diff --git a/controllers/Admin.controller.js b/controllers/Admin.controller.js index 4db6286..6406fd8 100644 --- a/controllers/Admin.controller.js +++ b/controllers/Admin.controller.js @@ -98,42 +98,131 @@ const getList = async (req, res) => { }; - - - const update = async (req, res) => { try { - let adminId = req.userId; - let obj = { - userName: req.body.userName ? req.body.userName : undefined, - email: req.body.email ? req.body.email : undefined, - password: req.body.password ? bcrypt.hashSync(req.body.password) : undefined, + const adminId = req.userId; + const { firstName, lastName, address, mobileNo } = req.body; + console.log(req.body, "================================>") + const admin = await User.findOne({ _id: adminId }); + if (!admin) { + return res.status(404).json({ + error_code: 404, + message: 'Admin not found' + }); } - if (req.file) { - const { filename, path } = req.file - obj.image = { - fileName: filename, - fileAddress: path, - } + const obj = { + firstName: firstName, + lastName: lastName, + address: address, + mobileNo: mobileNo } + // console.log("🚀 ~ update ~ obj:", obj) + await User.findOneAndUpdate({ _id: adminId }, obj); + const updatedAdmin = await User.findOne({ _id: adminId }); + // console.log("🚀 ~ update ~ updatedAdmin:", updatedAdmin) - await User.findOneAndUpdate({ _id: adminId }, { $set: obj }); - return res.status(201).send({ + return res.status(200).json({ error_code: 200, - message: 'Admin got updated' - }) - - } catch (err) { - console.log('Error inside update admin', err); - res.status(500).send({ + message: 'Admin profile updated successfully', + admin: updatedAdmin + }); + } catch (error) { + console.error('Error inside update admin:', error); + return res.status(500).json({ error_code: 500, message: "Internal Server Error" - }) + }); + } +}; + +const updateProfile = async (req, res) => { + try { + const adminId = req.userId; + console.log("🚀 ~ updateProfile ~ adminId:", adminId) + + if (!adminId) { + return res.status(404).json({ + error_code: 404, + message: 'Admin not found' + }); + } + + const baseUrl = `${req.protocol}://${req.get('host')}`; + const imagePath = `uploads/${req.file.filename}`; + const imageUrl = `${baseUrl}/${imagePath}`; + + // Construct the updateFields object with the image details + const updateFields = { + image: { + fileName: req.file.filename, + fileAddress: imagePath + }, + imageUrl:imageUrl + }; + + // Update the admin profile with the new image details + const updatedAdmin = await User.findOneAndUpdate({ _id: adminId }, updateFields, { new: true }); + + + return res.status(200).json({ + error_code: 200, + message: 'Admin profile updated successfully', + admin: { + ...updatedAdmin.toObject(), + imageUrl: imageUrl + } + }); + } catch (error) { + console.error('Error inside updateProfile:', error); + return res.status(500).json({ + error_code: 500, + message: "Internal Server Error" + }); + } +}; +const adminProfile =async (req,res)=>{ + try { + //view admin profile by req userid + + const adminId = req.userId; + console.log("��� ~ adminProfile ~ adminId:", adminId) + + if (!adminId) { + return res.status(404).json({ + error_code: 404, + message: 'Admin not found' + }); + } + + const userData = await User.findOne({ _id: adminId }); + if (!userData) { + return res.status(400).send({ + error_code: 400, + message: 'User not found' + }); + } + console.log("��� ~ adminProfile ~ userData:", userData) + return res.status(200).send({ + error_code: 200, + message: 'Admin profile retrieved successfully', + admin: userData + }); + + + } catch (error) { + console.error('Error inside adminProfile:', error); + return res.status(500).json({ + error_code: 500, + message: "Internal Server Error" + }); + } } + + const userStatus = async (req, res) => { try { const { id } = req.params; @@ -145,7 +234,7 @@ const userStatus = async (req, res) => { message: 'User not found' }); } - userData.status = userData.status === 'activate' ? 'deactivate' : 'activate'; + userData.status = userData.status === 'Active' ? 'Deactive' : 'Active'; await userData.save(); @@ -163,12 +252,62 @@ const userStatus = async (req, res) => { }; +const changePassword = async (req, res) => { + try { + const userId = req.userId; + console.log("🚀 ~ changePassword ~ userId:", userId) + + const userData = await User.findOne({ _id: userId }); + console.log("🚀 ~ changePassword ~ userData:", userData) + if (!userData) { + return res.status(404).json({ + error_code: 404, + message: 'User not found' + }); + } + const { oldPassword, newPassword, confirmPassword } = req.body; + + if (newPassword !== confirmPassword) { + return res.status(400).json({ + error_code: 400, + message: 'New password and confirm password do not match' + }); + } + const isMatch = await bcrypt.compare(oldPassword, userData.password); + if (!isMatch) { + return res.status(400).json({ + error_code: 400, + message: 'Old password is incorrect' + }); + } + + const hashedPassword = await bcrypt.hash(newPassword, 10); + + userData.password = hashedPassword; + + await userData.save(); + + return res.status(200).json({ + message: 'Password changed successfully', + user: userData + }); + } catch (error) { + console.error('Error inside changePassword controller', error); + return res.status(500).json({ + error_code: 500, + message: 'Internal Server Error' + }); + } +}; module.exports = { createAdmin, + updateProfile, getList, - update, userStatus + adminProfile, + update, userStatus, + changePassword } \ No newline at end of file diff --git a/controllers/Ads.controller.js b/controllers/Ads.controller.js index 72c1630..19f514e 100644 --- a/controllers/Ads.controller.js +++ b/controllers/Ads.controller.js @@ -34,20 +34,89 @@ const create = async (req, res) => { } } -const getad = async(req,res) => { - try{ - let obj = {} - const ads = await Ads.find(obj); - return res.status(200).send(constant.adsGenerator(ads, req)); +const getad = async (req, res) => { + try { + const { search = '', dateRange, startDate, endDate } = req.query; + const filter = {}; - }catch(err){ - console.log('Error inside getad Controller',err); - res.status(500).send({ - error_code : 500, - message : 'Internal Server Error' - }) + // Apply search query if provided + if (search) { + filter.$or = [ + { title: { $regex: search, $options: 'i' } }, + { description: { $regex: search, $options: 'i' } } + ]; + } + + // Apply date range filter if provided + if (dateRange) { + switch (dateRange) { + case 'today': + filter.createdAt = { $gte: new Date().setHours(0, 0, 0), $lte: new Date() }; + break; + case 'yesterday': + const yesterday = new Date(); + yesterday.setDate(yesterday.getDate() - 1); + filter.createdAt = { + $gte: new Date(yesterday).setHours(0, 0, 0), + $lte: new Date(yesterday).setHours(23, 59, 59) + }; + break; + case 'last7days': + filter.createdAt = { $gte: new Date().setDate(new Date().getDate() - 7), $lte: new Date() }; + break; + case 'last30days': + filter.createdAt = { $gte: new Date().setDate(new Date().getDate() - 30), $lte: new Date() }; + break; + case 'thisMonth': + filter.createdAt = { + $gte: new Date(new Date().getFullYear(), new Date().getMonth(), 1), + $lte: new Date(new Date().getFullYear(), new Date().getMonth() + 1, 0) + }; + break; + case 'lastMonth': + const lastMonthStart = new Date(new Date().getFullYear(), new Date().getMonth() - 1, 1); + const lastMonthEnd = new Date(new Date().getFullYear(), new Date().getMonth(), 0); + filter.createdAt = { $gte: lastMonthStart, $lte: lastMonthEnd }; + break; + case 'customRange': + if (startDate && endDate) { + filter.createdAt = { $gte: new Date(startDate), $lte: new Date(endDate) }; + } + break; + default: + break; + } + } + + // Fetch total count of ads matching the filter criteria + const totalCount = await Ads.countDocuments(filter); + + // Perform pagination + const page = parseInt(req.query.page) || 1; + const limit = parseInt(req.query.limit) || 10; + const skip = (page - 1) * limit; + + // Fetch paginated ads + const ads = await Ads.find(filter).skip(skip).limit(limit); + + return res.status(200).json({ + error_code: 200, + message: 'Ads retrieved successfully', + ads: ads, + page: page, + limit: limit, + total_count: totalCount + }); + } catch (err) { + console.log('Error inside getad Controller', err); + return res.status(500).json({ + error_code: 500, + message: 'Internal Server Error' + }); } -} +}; + + const updateAds = async(req,res) => { try{ @@ -172,7 +241,7 @@ const updateAdsStatus = async (req, res) => { adsData: adsData }); } catch (err) { - console.error('Error inside update admin', err); + console.error('Error inside update ', err); res.status(500).send({ error_code: 500, message: 'Internal Server Error' diff --git a/controllers/Artist.controller.js b/controllers/Artist.controller.js index 8597672..9d5e35f 100644 --- a/controllers/Artist.controller.js +++ b/controllers/Artist.controller.js @@ -153,7 +153,7 @@ const changeArtistStatus = async (req, res) => { artistData: artistData }); } catch (err) { - console.error('Error inside update admin', err); + console.error('Error inside update ', err); res.status(500).send({ error_code: 500, message: 'Internal Server Error' diff --git a/controllers/album.controller.js b/controllers/album.controller.js index c8e8d13..a33fc21 100644 --- a/controllers/album.controller.js +++ b/controllers/album.controller.js @@ -12,13 +12,7 @@ const createAlbum = async (req, res) => { message: "Category ID and Subcategory ID are required" }); } - const category = await Categories.findById(categoryId); - if (!category) { - return res.status(404).json({ - error_code: 404, - message: "Category not found" - }); - } + const subcategory = await SubCategories.findById(subcategoryId); if (!subcategory) { return res.status(404).json({ @@ -26,18 +20,25 @@ const createAlbum = async (req, res) => { message: "Subcategory not found" }); } - const albumObj = { + + const baseUrl = `${req.protocol}://${req.get('host')}`; + const imagePath = `uploads/${req.file.filename}`; + const imageUrl = `${baseUrl}/${imagePath}`; + + const obj = { categoryId: categoryId, subcategoryId: subcategoryId, albumName, shortDescription, - image: req.file ? { + imageUrl:imageUrl, + image: { fileName: req.file.filename, - fileAddress: req.file.path - } : undefined - }; + fileAddress: req.file.path, + } - const album = await Album.create(albumObj); + }; + const album = await Album.create(obj); + console.log("🚀 ~ createAlbum ~ album:", album); return res.status(201).json({ error_code: 200, message: "Album created successfully", album: album }); } catch (err) { @@ -45,12 +46,165 @@ const createAlbum = async (req, res) => { return res.status(500).json({ error_code: 500, message: "Internal Server Error" }); } }; +const deletMany = async (req, res) => { + try { + + + const albums = await Album.deleteMany({ }); + console.log("��� ~ deletMany ~ albums:", albums); + + return res.status(200).json({ error_code: 200, message: "Albums deleted successfully", albums: albums }); + + + } catch (error) { + console.error("Error inside DeleteMany Controller", error); + return res.status(500).json({ error_code: 500, message: "Internal Server Error" }); + + } +} + + +// ---------------------------------------------------- + +// const createAlbum = async (req, res) => { +// try { +// const { categoryId, subcategoryId, albumName, shortDescription } = req.body; + +// // Check if categoryId and subcategoryId are provided +// if (!categoryId || !subcategoryId) { +// return res.status(400).json({ +// error_code: 400, +// message: "Both Category ID and Subcategory ID are required" +// }); +// } + +// // Check if the provided category and subcategory exist +// const category = await Categories.findById(categoryId); +// const subcategory = await SubCategories.findById(subcategoryId); +// if (!category || !subcategory) { +// return res.status(404).json({ +// error_code: 404, +// message: "Category or Subcategory not found" +// }); +// } + +// // Handle image upload +// let image = undefined; +// if (req.file) { +// const baseUrl = `${req.protocol}://${req.get('host')}`; +// const imagePath = `uploads/${req.file.filename}`; +// const imageUrl = `${baseUrl}/${imagePath}`; +// image = { +// fileName: req.file.filename, +// fileAddress: req.file.path, +// imageUrl: imageUrl +// }; +// } + +// // Create album object +// const albumObj = { +// categoryId: categoryId, +// subcategoryId: subcategoryId, +// albumName, +// shortDescription, +// image +// }; + +// // Create album in the database +// const album = await Album.create(albumObj); +// console.log("🚀 ~ createAlbum ~ album:", album) +// return res.status(201).json({ error_code: 200, message: "Album created successfully", album: album }); +// } catch (err) { +// console.error("Error inside CreateAlbum Controller", err); +// return res.status(500).json({ +// error_code: 500, +// message: "Internal Server Error" +// }); +// } +// }; + + + +// ------------------------------------------------ + +// const updateAlbum = async (req, res) => { +// try { +// const { id } = req.params; +// const { categoryId, subcategoryId, albumName, shortDescription } = req.body; + +// // Check if the album ID is provided +// if (!id) { +// return res.status(400).json({ +// error_code: 400, +// message: "Album ID is required" +// }); +// } + +// // Check if the required fields are present in the request body +// if (!categoryId || !subcategoryId) { +// return res.status(400).json({ +// error_code: 400, +// message: "Category ID and Subcategory ID are required" +// }); +// } + +// // Find the album by ID +// const album = await Album.findById(id); +// if (!album) { +// return res.status(404).json({ +// error_code: 404, +// message: "Album not found" +// }); +// } + +// // Find the category and subcategory by their IDs +// const category = await Categories.findById(categoryId); +// const subcategory = await SubCategories.findById(subcategoryId); + +// // Check if the category and subcategory exist +// if (!category || !subcategory) { +// return res.status(404).json({ +// error_code: 404, +// message: "Category or Subcategory not found" +// }); +// } + +// // Update album fields +// album.set({ +// categoryId, +// subcategoryId, +// albumName, +// shortDescription, +// image: req.file ? { +// fileName: req.file.filename, +// fileAddress: req.file.path +// } : album.image // Retain existing image if no new file provided +// }); + +// // Save the updated album +// await album.save(); + +// return res.status(200).json({ +// error_code: 200, +// message: "Album updated successfully", +// album: album +// }); +// } catch (err) { +// console.error("Error inside UpdateAlbum Controller", err); +// return res.status(500).json({ +// error_code: 500, +// message: "Internal Server Error" +// }); +// } +// }; + +// ------------------------------------------- + const updateAlbum = async (req, res) => { try { const { id } = req.params; const { categoryId, subcategoryId, albumName, shortDescription } = req.body; - // Check if the album ID is provided if (!id) { return res.status(400).json({ error_code: 400, @@ -58,15 +212,13 @@ const updateAlbum = async (req, res) => { }); } - // Check if the required fields are present in the request body - if (!categoryId || !subcategoryId) { + if (!categoryId || !subcategoryId || !albumName || !shortDescription) { return res.status(400).json({ error_code: 400, - message: "Category ID and Subcategory ID are required" + message: "Category ID, Subcategory ID, Album Name, and Short Description are required" }); } - // Find the album by ID const album = await Album.findById(id); if (!album) { return res.status(404).json({ @@ -75,11 +227,9 @@ const updateAlbum = async (req, res) => { }); } - // Find the category and subcategory by their IDs const category = await Categories.findById(categoryId); const subcategory = await SubCategories.findById(subcategoryId); - // Check if the category and subcategory exist if (!category || !subcategory) { return res.status(404).json({ error_code: 404, @@ -87,17 +237,24 @@ const updateAlbum = async (req, res) => { }); } + // Handle image upload and update imageUrl + let imageUrl = album.image ? album.image.imageUrl : undefined; + if (req.file) { + const baseUrl = `${req.protocol}://${req.get('host')}`; + const imagePath = `uploads/${req.file.filename}`; + imageUrl = `${baseUrl}/${imagePath}`; + } + // Update album fields - album.set({ - categoryId, - subcategoryId, - albumName, - shortDescription, - image: req.file ? { - fileName: req.file.filename, - fileAddress: req.file.path - } : album.image // Retain existing image if no new file provided - }); + album.categoryId = categoryId; + album.subcategoryId = subcategoryId; + album.albumName = albumName; + album.shortDescription = shortDescription; + album.imageUrl = imageUrl; + album.image = req.file ? { + fileName: req.file.filename, + fileAddress: req.file.path, + } : album.image; // Save the updated album await album.save(); @@ -105,7 +262,7 @@ const updateAlbum = async (req, res) => { return res.status(200).json({ error_code: 200, message: "Album updated successfully", - album:album + album: album }); } catch (err) { console.error("Error inside UpdateAlbum Controller", err); @@ -116,6 +273,7 @@ const updateAlbum = async (req, res) => { } }; +// ------------------------------------------------------------------ const deleteAlbum = async (req, res) => { try { @@ -148,81 +306,82 @@ const changeAlbumStatus = async (req, res) => { const { id } = req.params; const albumData = await Album.findById(id); if (!albumData) { - return res.status(400).send({ - error_code: 400, - message: 'album not found' - }); + return res.status(400).send({ + error_code: 400, + message: 'album not found' + }); } - + albumData.status = albumData.status === 'activate' ? 'deactivate' : 'activate'; - + await albumData.save(); res.status(200).send({ - message: `ads status toggled successfully to ${albumData.status}`, - albumData: albumData + message: `ads status toggled successfully to ${albumData.status}`, + albumData: albumData }); - } catch (err) { + } catch (err) { console.error('Error inside update admin', err); res.status(500).send({ - error_code: 500, - message: 'Internal Server Error' + error_code: 500, + message: 'Internal Server Error' }); - } - }; - + } +}; - const getAlbums = async (req, res) => { - try { - // Pagination parameters - const { page = 1, limit = 10, search: searchQuery = '' } = req.query; - const skip = (page - 1) * limit; - - // Find albums with pagination and search - const albums = await Album.find({ - $or: [ - { albumName: { $regex: searchQuery, $options: 'i' } }, - { shortDescription: { $regex: searchQuery, $options: 'i' } } - ] - }) + +const getAlbums = async (req, res) => { + try { + // Pagination parameters + const { page = 1, limit = 10, search: searchQuery = '' } = req.query; + const skip = (page - 1) * limit; + + // Find albums with pagination and search + const albums = await Album.find({ + $or: [ + { albumName: { $regex: searchQuery, $options: 'i' } }, + { shortDescription: { $regex: searchQuery, $options: 'i' } } + ] + }) .populate('categoryId') // Populate categoryId field .populate('subcategoryId') // Populate subcategoryId field .skip(skip) .limit(limit); - const totalCount = await Album.countDocuments({ - $or: [ - { albumName: { $regex: searchQuery, $options: 'i' } }, - { shortDescription: { $regex: searchQuery, $options: 'i' } } - ] - }); - - const totalPages = Math.ceil(totalCount / limit); - - return res.status(200).json({ - error_code: 200, - message: "Albums retrieved successfully", - data: albums.map(album => ({ - _id: album._id, - status: album.status, - image: album.image, - albumName: album.albumName, - shortDescription: album.shortDescription, - category: album.categoryId ? album.categoryId.name : null, - subcategory: album.subcategoryId ? album.subcategoryId.SubCategoriesName : null - })), - totalPages: totalPages, - currentPage: page - }); - } catch (err) { - console.log("Error inside GetAlbums Controller", err); - return res.status(500).json({ - error_code: 500, - message: "Internal Server Error" - }); - } - }; - + const totalCount = await Album.countDocuments({ + $or: [ + { albumName: { $regex: searchQuery, $options: 'i' } }, + { shortDescription: { $regex: searchQuery, $options: 'i' } } + ] + }); + + const totalPages = Math.ceil(totalCount / limit); + + return res.status(200).json({ + error_code: 200, + message: "Albums retrieved successfully", + data: albums.map(album => ({ + _id: album._id, + status: album.status, + image: album.image, + imageUrl:album.imageUrl, + albumName: album.albumName, + shortDescription: album.shortDescription, + category: album.categoryId ? album.categoryId.name : null, + subcategory: album.subcategoryId ? album.subcategoryId.SubCategoriesName : null + })), + totalPages: totalPages, + currentPage: page + }); + } catch (err) { + console.log("Error inside GetAlbums Controller", err); + return res.status(500).json({ + error_code: 500, + message: "Internal Server Error" + }); + } +}; + @@ -232,7 +391,8 @@ module.exports = { updateAlbum, deleteAlbum, changeAlbumStatus, - getAlbums + getAlbums, + deletMany } \ No newline at end of file diff --git a/controllers/categories.controller.js b/controllers/categories.controller.js index 814b9f0..29395ec 100644 --- a/controllers/categories.controller.js +++ b/controllers/categories.controller.js @@ -18,7 +18,7 @@ const createCategories = async (req, res) => { if (req.file) { obj["image"] = { fileName: req.file.filename, - fileAddress: req.file.filename + fileAddress: req.file.filename }; const baseUrl = `${req.protocol}://${req.get('host')}`; @@ -46,19 +46,64 @@ const createCategories = async (req, res) => { +// const updateCategories = async (req, res) => { +// try { +// const categoryId = req.params.id; + +// let category = await Category.findById(categoryId); + +// if (!category) { +// return res.json({ +// error_code: 404, +// message: "Category not found" +// }); +// } + +// if (req.file) { +// const baseUrl = `${req.protocol}://${req.get('host')}`; +// const imagePath = `uploads/${req.file.filename}`; +// const imageUrl = `${baseUrl}/${imagePath}`; +// category.imageUrl = imageUrl; +// category.image = { +// fileName: req.file.filename, +// fileAddress: req.file.path, +// }; +// } +// const updatedCategory = await category.save(); +// console.log("🚀 ~ updateCategories ~ updatedCategory:", updatedCategory) + +// return res.status(200).send({ +// error_code: 200, +// message: "Category updated", +// category: updatedCategory +// }); +// } catch (err) { +// console.log("Error inside update Categories Controller", err); +// return res.status(500).send({ +// error_code: 500, +// message: "Internal Server Error" +// }); +// } +// }; + +// ---------------------------------------------- const updateCategories = async (req, res) => { try { - const categoryId = req.params.id; + const categoryId = req.params.id; let category = await Category.findById(categoryId); if (!category) { - return res.status(404).send({ + return res.json({ error_code: 404, message: "Category not found" }); } + if (req.body.categoriesName) { + category.name = req.body.categoriesName; + } + if (req.file) { const baseUrl = `${req.protocol}://${req.get('host')}`; const imagePath = `uploads/${req.file.filename}`; @@ -66,11 +111,12 @@ const updateCategories = async (req, res) => { category.imageUrl = imageUrl; category.image = { fileName: req.file.filename, - fileAddress: req.file.path, + fileAddress: req.file.path, }; } + const updatedCategory = await category.save(); - console.log("🚀 ~ updateCategories ~ updatedCategory:", updatedCategory) + console.log("updateCategories ~ updatedCategory:", updatedCategory); return res.status(200).send({ error_code: 200, @@ -85,7 +131,7 @@ const updateCategories = async (req, res) => { }); } }; - +// ------------------------------------------- const deleteCategories = async (req, res) => { @@ -123,29 +169,29 @@ const changeCategoryStatus = async (req, res) => { const { id } = req.params; const CategoryData = await Category.findById(id); if (!CategoryData) { - return res.status(400).send({ - error_code: 400, - message: 'Ads not found' - }); + return res.status(400).send({ + error_code: 400, + message: 'Ads not found' + }); } CategoryData.status = CategoryData.status === 'activate' ? 'deactivate' : 'activate'; await CategoryData.save(); res.status(200).send({ - message: `ads status toggled successfully to ${CategoryData.status}`, - CategoryData: CategoryData + message: `ads status toggled successfully to ${CategoryData.status}`, + CategoryData: CategoryData }); -} catch (err) { + } catch (err) { console.error('Error inside update admin', err); res.status(500).send({ - error_code: 500, - message: 'Internal Server Error' + error_code: 500, + message: 'Internal Server Error' }); -} + } }; -const getCategories = async (req, res) => { +const getcategoriesPage = async (req, res) => { try { const page = parseInt(req.query.page) || 1; @@ -155,14 +201,14 @@ const getCategories = async (req, res) => { const searchQuery = req.query.search || ''; const categories = await Category.find({ - name: { $regex: searchQuery, $options: 'i' } + name: { $regex: searchQuery, $options: 'i' } }) .skip(skip) .limit(limit); console.log("🚀 ~ getCategories ~ categories:", categories) const totalCount = await Category.countDocuments({ - name: { $regex: searchQuery, $options: 'i' } + name: { $regex: searchQuery, $options: 'i' } }); res.status(200).json({ @@ -182,6 +228,25 @@ const getCategories = async (req, res) => { } }; + + +const getCategories = async (req, res) => { + try { + const categories = await Category.find({}); + res.status(200).json({ + error_code: 200, + message: 'Categories fetched successfully', + categories: categories + }); + } catch (err) { + console.error('Error inside getCategories Controller', err); + res.status(500).json({ + error_code: 500, + message: 'Internal Server Error' + }); + } +}; + // const deleteMany = async (req, res) => { // try { // const deleted = await Category.deleteMany({}); // Passing an empty filter object deletes all documents @@ -205,4 +270,5 @@ module.exports = { deleteCategories, changeCategoryStatus, getCategories, + getcategoriesPage }; diff --git a/controllers/subcategories.controller.js b/controllers/subcategories.controller.js index 2251eb3..4b54b9c 100644 --- a/controllers/subcategories.controller.js +++ b/controllers/subcategories.controller.js @@ -59,8 +59,8 @@ const createsubCategories = async (req, res) => { SubCategoriesName: req.body.SubCategoriesName, image: { fileName: req.file.filename, - fileAddress: req.file.filename, - imageUrl: imageUrl + fileAddress: req.file.filename, + imageUrl: imageUrl } }); @@ -81,35 +81,94 @@ const createsubCategories = async (req, res) => { }; +// ------------------------------------------ +// const updateSubCategories = async (req, res) => { +// try { +// const { subCatid } = req.body; +// const { CategoriesId, SubCategoriesName } = req.body; + +// // Check if CategoriesId is provided +// if (!CategoriesId) { +// return res.status(400).json({ +// error_code: 400, +// message: "CategoriesId is required" +// }); +// } + +// // Check if the category exists +// const category = await Categories.findById(CategoriesId); +// if (!category) { +// return res.status(404).json({ +// error_code: 404, +// message: "Category not found" +// }); +// } + +// // Prepare update object +// const updateObject = { CategoriesId, SubCategoriesName }; +// if (req.file) { +// // Construct image URL +// const baseUrl = `${req.protocol}://${req.get('host')}`; +// const imagePath = `uploads/${req.file.filename}`; +// const imageUrl = `${baseUrl}/${imagePath}`; + +// updateObject.image = { +// fileName: req.file.filename, +// fileAddress: req.file.path, +// imageUrl: imageUrl +// }; +// } + +// // Find and update the subcategory +// const updatedSubCategories = await SubCategories.findByIdAndUpdate(subCatid, updateObject, { new: true }); + +// // Check if the subcategory exists +// if (!updatedSubCategories) { +// return res.status(404).json({ +// error_code: 404, +// message: "SubCategories not found" +// }); +// } + +// // Return a success response with the updated subcategory +// return res.status(200).json({ +// error_code: 200, +// message: "SubCategories updated", +// category: updatedSubCategories +// }); +// } catch (err) { +// console.error('Error inside update SubCategories Controller', err); +// return res.status(500).json({ +// error_code: 500, +// message: 'Internal Server Error' +// }); +// } +// }; +// -------------------------------------------------------- const updateSubCategories = async (req, res) => { try { - const { id } = req.params; - const { CategoriesId, SubCategoriesName } = req.body; + const { subCatid, SubCategoriesName } = req.body; - // Check if CategoriesId is provided - if (!CategoriesId) { + if (!subCatid) { return res.status(400).json({ error_code: 400, - message: "CategoriesId is required" + message: "subCatid is required" }); } - // Check if the category exists - const category = await Categories.findById(CategoriesId); - if (!category) { - return res.status(404).json({ - error_code: 404, - message: "Category not found" + if (!SubCategoriesName) { + return res.status(400).json({ + error_code: 400, + message: "SubCategoriesName is required" }); } - // Prepare update object - const updateObject = { CategoriesId, SubCategoriesName }; + + const updateObject = { SubCategoriesName }; if (req.file) { - // Construct image URL const baseUrl = `${req.protocol}://${req.get('host')}`; const imagePath = `uploads/${req.file.filename}`; const imageUrl = `${baseUrl}/${imagePath}`; @@ -121,10 +180,8 @@ const updateSubCategories = async (req, res) => { }; } - // Find and update the subcategory - const updatedSubCategories = await SubCategories.findByIdAndUpdate(id, updateObject, { new: true }); + const updatedSubCategories = await SubCategories.findByIdAndUpdate(subCatid, updateObject, { new: true }); - // Check if the subcategory exists if (!updatedSubCategories) { return res.status(404).json({ error_code: 404, @@ -132,11 +189,10 @@ const updateSubCategories = async (req, res) => { }); } - // Return a success response with the updated subcategory return res.status(200).json({ error_code: 200, message: "SubCategories updated", - category: updatedSubCategories + category: updatedSubCategories, }); } catch (err) { console.error('Error inside update SubCategories Controller', err); @@ -147,6 +203,8 @@ const updateSubCategories = async (req, res) => { } }; +// --------------------------------------- + const deleteMany = async (req, res) => { try { const deleted = await SubCategories.deleteMany({}); // Passing an empty filter object deletes all documents @@ -195,7 +253,53 @@ const deleteSubCategories = async (req, res) => { } }; +// --------------------------------------------- +// const getSubCategories = async (req, res) => { +// try { +// const page = parseInt(req.query.page) || 1; +// const limit = parseInt(req.query.limit) || 5; +// const skip = (page - 1) * limit; +// const searchQuery = req.query.search || ''; + +// const subcategories = await SubCategories.find({ +// SubCategoriesName: { $regex: searchQuery, $options: 'i' } +// }) +// .populate('CategoriesId') // Populate the 'CategoriesId' field +// .skip(skip) +// .limit(limit); +// const populatedSubcategories = subcategories.map(subcategory => ({ +// _id: subcategory._id, +// SubCategoriesName: subcategory.SubCategoriesName, +// image: subcategory.image, +// status: subcategory.status, +// CategoriesId: subcategory.CategoriesId ? subcategory.CategoriesId._id : null, // Reference the category ID if it exists +// categoryName: subcategory.CategoriesId ? subcategory.CategoriesId.name : null // Display category name if it exists +// })); +// console.log("🚀 ~ populatedSubcategories ~ populatedSubcategories:", populatedSubcategories) + +// const totalCount = await SubCategories.countDocuments({ +// SubCategoriesName: { $regex: searchQuery, $options: 'i' } +// }); + +// res.status(200).json({ +// error_code: 200, +// message: 'Subcategories retrieved successfully', +// subcategories: populatedSubcategories, +// total_count: totalCount, +// page, +// limit +// }); +// } catch (err) { +// console.error('Error inside get SubCategories Controller', err); +// res.status(500).json({ +// error_code: 500, +// message: 'Internal Server Error' +// }); +// } +// }; + +// --------------------------------- const getSubCategories = async (req, res) => { try { @@ -204,30 +308,53 @@ const getSubCategories = async (req, res) => { const skip = (page - 1) * limit; const searchQuery = req.query.search || ''; - const subcategories = await SubCategories.find({ - SubCategoriesName: { $regex: searchQuery, $options: 'i' } - }) - .populate('CategoriesId') // Populate the 'CategoriesId' field - .skip(skip) - .limit(limit); - const populatedSubcategories = subcategories.map(subcategory => ({ - _id: subcategory._id, - SubCategoriesName: subcategory.SubCategoriesName, - image: subcategory.image, - status: subcategory.status, - CategoriesId: subcategory.CategoriesId ? subcategory.CategoriesId._id : null, // Reference the category ID if it exists - categoryName: subcategory.CategoriesId ? subcategory.CategoriesId.name : null // Display category name if it exists - })); - console.log("🚀 ~ populatedSubcategories ~ populatedSubcategories:", populatedSubcategories) + const matchQuery = { + SubCategoriesName: { $regex: searchQuery, $options: 'i' }, + 'CategoriesId.deleted': { $ne: true }, + 'deleted': { $ne: true } + }; - const totalCount = await SubCategories.countDocuments({ - SubCategoriesName: { $regex: searchQuery, $options: 'i' } - }); + console.log('Match Query:', matchQuery); + + const subcategories = await SubCategories.aggregate([ + { $match: matchQuery }, + { + $lookup: { + from: 'categories', + localField: 'CategoriesId', + foreignField: '_id', + as: 'category' + } + }, + { $unwind: '$category' }, + { + $project: { + _id: 1, + SubCategoriesName: 1, + status: 1, + categoryName: '$category.name', + imageUrl: { $ifNull: ['$image.imageUrl', null] } + } + }, + { $skip: skip }, + { $limit: limit }, + { $group: { _id: null, subcategories: { $push: '$$ROOT' } } }, // Group all documents into a single array + { $project: { subcategories: 1, totalCount: { $size: '$subcategories' } } } // Calculate total count + ]); + + if (!subcategories || subcategories.length === 0) { + return res.status(404).json({ + error_code: 404, + message: 'No subcategories found' + }); + } + + const totalCount = subcategories[0].totalCount; res.status(200).json({ error_code: 200, message: 'Subcategories retrieved successfully', - subcategories: populatedSubcategories, + subcategories: subcategories[0].subcategories, total_count: totalCount, page, limit @@ -244,6 +371,14 @@ const getSubCategories = async (req, res) => { + + + + + + +// -------------------------------------------- + const changeSubCategoryStatus = async (req, res) => { try { const { id } = req.params; @@ -272,36 +407,76 @@ const changeSubCategoryStatus = async (req, res) => { } }; -const getCategories = async (req, res) => { +// const getCategories = async (req, res) => { +// try { +// const { CategoriesId } = req.params; + + +// const categories = await SubCategories.find({ CategoriesId: CategoriesId }); +// console.log("🚀 ~ getCategories ~ categories:", categories) +// if (!categories || categories.length === 0) { +// return res.status(400).send({ +// error_code: 400, +// message: 'Categories not found for the given category ID' +// }); +// } + +// // Return the found categories +// res.status(200).json({ +// error_code: 200, +// message: 'Categories retrieved successfully', +// categories: categories +// }); + +// } catch (err) { +// console.error('Error inside getCategories', err); +// res.status(500).send({ +// error_code: 500, +// message: 'Internal Server Error' +// }); +// } +// }; + +// ------------------------------------------------ + +const getSubCategoriesfromCategory = async (req, res) => { try { const { CategoriesId } = req.params; - const categories = await SubCategories.find({ CategoriesId: CategoriesId }); - console.log("🚀 ~ getCategories ~ categories:", categories) + if (!categories || categories.length === 0) { - return res.status(400).send({ + return res.status(400).json({ error_code: 400, message: 'Categories not found for the given category ID' }); } - - // Return the found categories + + const categoriesWithImageUrl = categories.map(category => ({ + _id: category._id, + SubCategoriesName: category.SubCategoriesName, + imageUrl: category.image ? category.image.imageUrl : null, + status: category.status, + CategoriesId: category.CategoriesId, + categoryName: category.categoryName + })); + res.status(200).json({ error_code: 200, message: 'Categories retrieved successfully', - categories: categories + categories: categoriesWithImageUrl }); } catch (err) { console.error('Error inside getCategories', err); - res.status(500).send({ + res.status(500).json({ error_code: 500, message: 'Internal Server Error' }); } }; +// ------------------------------------------------ @@ -311,6 +486,7 @@ module.exports = { deleteSubCategories, getSubCategories, deleteMany, - changeSubCategoryStatus,getCategories + changeSubCategoryStatus, + getSubCategoriesfromCategory }; diff --git a/middlewares/Admin.js b/middlewares/Admin.js index b83e6b6..943905c 100644 --- a/middlewares/Admin.js +++ b/middlewares/Admin.js @@ -6,6 +6,7 @@ const isAdmin = async(req,res,next) => { console.log('admin midd') let id = req.userId; const user = await User.findById(id); + console.log("🚀 ~ isAdmin ~ user:", user) if(user.userTypes!= constant.userTypes.admin) return res.status(401).send({ error_code : 400, diff --git a/models/album.model.js b/models/album.model.js index 14b9a09..00bf94b 100644 --- a/models/album.model.js +++ b/models/album.model.js @@ -3,20 +3,21 @@ const Schema = mongoose.Schema; // Define the schema const albumSchema = new mongoose.Schema({ - categoryId: { type: Schema.Types.ObjectId, ref: 'Category' }, - subcategoryId: { type: Schema.Types.ObjectId, ref: 'SubCategories' }, - albumName: String, - shortDescription: String, - image: { - fileName: String, - fileAddress: String - }, - status: { - type: String, - enum: ['activate', 'deactivate'], - default: 'activate' - } - + categoryId: { type: mongoose.Schema.Types.ObjectId, ref: 'Category', required: true }, + subcategoryId: { type: mongoose.Schema.Types.ObjectId, ref: 'SubCategories', required: true }, + albumName: { type: String, required: true }, + shortDescription: { type: String, required: true }, + image: { + fileName: { type: String }, + fileAddress: { type: String }, + + }, + imageUrl: { type: String }, + status: { + type: String, + enum: ['activate', 'deactivate'], + default: 'activate' + } }, { timestamps: true }); // This will add createdAt and updatedAt fields // Create the model diff --git a/models/subcategories.model.js b/models/subcategories.model.js index f156b37..a9685d9 100644 --- a/models/subcategories.model.js +++ b/models/subcategories.model.js @@ -34,3 +34,8 @@ const subCategoriesSchema = new mongoose.Schema({ const SubCategories = mongoose.model('SubCategories', subCategoriesSchema); module.exports = SubCategories; +// categorySchema.pre('remove', async function(next) { +// const category = this; +// await SubCategory.deleteMany({ CategoriesId: category._id }); +// next(); +// }); diff --git a/models/user.model.js b/models/user.model.js index d0ca7ba..90ca9d9 100644 --- a/models/user.model.js +++ b/models/user.model.js @@ -21,6 +21,29 @@ const userSchema = new mongoose.Schema({ }, + imageUrl:{ + type: String + }, + firstName:{ + type: String, + // required: true + }, + lastName:{ + type: String, + // required: true + + }, + + address:{ + + type: String, + + }, + mobileNo:{ + type: Number + + }, + email: { type: String, required: true, @@ -40,8 +63,8 @@ const userSchema = new mongoose.Schema({ }, status: { type: String, - enum: ['activate', 'deactivate'], - default: 'activate' + enum: ['Active', 'Deactive'], + default: 'Active' }, registerWith: { diff --git a/node_modules/.bin/mime.cmd b/node_modules/.bin/mime.cmd deleted file mode 100644 index a9e48f1..0000000 --- a/node_modules/.bin/mime.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %* diff --git a/node_modules/.bin/mime.ps1 b/node_modules/.bin/mime.ps1 deleted file mode 100644 index 2222f40..0000000 --- a/node_modules/.bin/mime.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args - } else { - & "$basedir/node$exe" "$basedir/../mime/cli.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../mime/cli.js" $args - } else { - & "node$exe" "$basedir/../mime/cli.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/node_modules/.bin/mkdirp.cmd b/node_modules/.bin/mkdirp.cmd deleted file mode 100644 index 351da9d..0000000 --- a/node_modules/.bin/mkdirp.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %* diff --git a/node_modules/.bin/mkdirp.ps1 b/node_modules/.bin/mkdirp.ps1 deleted file mode 100644 index 911e854..0000000 --- a/node_modules/.bin/mkdirp.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args - } else { - & "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args - } else { - & "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/node_modules/.bin/nodemon.cmd b/node_modules/.bin/nodemon.cmd deleted file mode 100644 index 98e1b95..0000000 --- a/node_modules/.bin/nodemon.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nodemon\bin\nodemon.js" %* diff --git a/node_modules/.bin/nodemon.ps1 b/node_modules/.bin/nodemon.ps1 deleted file mode 100644 index d4e3f5d..0000000 --- a/node_modules/.bin/nodemon.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } else { - & "$basedir/node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } else { - & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/node_modules/.bin/nodetouch.cmd b/node_modules/.bin/nodetouch.cmd deleted file mode 100644 index 426bfc3..0000000 --- a/node_modules/.bin/nodetouch.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\touch\bin\nodetouch.js" %* diff --git a/node_modules/.bin/nodetouch.ps1 b/node_modules/.bin/nodetouch.ps1 deleted file mode 100644 index 5f68b4c..0000000 --- a/node_modules/.bin/nodetouch.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } else { - & "$basedir/node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } else { - & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/node_modules/.bin/nopt.cmd b/node_modules/.bin/nopt.cmd deleted file mode 100644 index 1c194db..0000000 --- a/node_modules/.bin/nopt.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nopt\bin\nopt.js" %* diff --git a/node_modules/.bin/nopt.ps1 b/node_modules/.bin/nopt.ps1 deleted file mode 100644 index 9d6ba56..0000000 --- a/node_modules/.bin/nopt.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../nopt/bin/nopt.js" $args - } else { - & "$basedir/node$exe" "$basedir/../nopt/bin/nopt.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../nopt/bin/nopt.js" $args - } else { - & "node$exe" "$basedir/../nopt/bin/nopt.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/node_modules/.bin/semver.cmd b/node_modules/.bin/semver.cmd deleted file mode 100644 index 7d4c104..0000000 --- a/node_modules/.bin/semver.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\semver\bin\semver.js" %* diff --git a/node_modules/.bin/semver.ps1 b/node_modules/.bin/semver.ps1 deleted file mode 100644 index 314717a..0000000 --- a/node_modules/.bin/semver.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args - } else { - & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../semver/bin/semver.js" $args - } else { - & "node$exe" "$basedir/../semver/bin/semver.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index 88e1645..2bcb15d 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -5,14 +5,17 @@ "requires": true, "packages": { "node_modules/@types/node": { - "version": "20.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", - "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==" + "version": "20.11.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.24.tgz", + "integrity": "sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==", + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==" + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", + "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==" }, "node_modules/@types/whatwg-url": { "version": "8.2.2", @@ -168,9 +171,9 @@ } }, "node_modules/bson": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/bson/-/bson-5.3.0.tgz", - "integrity": "sha512-ukmCZMneMlaC5ebPHXIkP8YJzNl5DC41N5MAIvKDqLggdao342t4McltoJBQfQya/nHBWAcSsYRqlXPoQkTJag==", + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/bson/-/bson-5.5.1.tgz", + "integrity": "sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==", "engines": { "node": ">=14.20.1" } @@ -205,12 +208,18 @@ } }, "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -326,6 +335,22 @@ "ms": "2.0.0" } }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -383,6 +408,25 @@ "node": ">= 0.8" } }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", @@ -551,19 +595,26 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -580,15 +631,15 @@ "node": ">= 6" } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dependencies": { - "function-bind": "^1.1.1" + "get-intrinsic": "^1.1.3" }, - "engines": { - "node": ">= 0.4.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-flag": { @@ -599,10 +650,21 @@ "node": ">=4" } }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "engines": { "node": ">= 0.4" }, @@ -621,6 +683,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hasown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", + "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", @@ -657,10 +730,17 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + "node_modules/ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" + } }, "node_modules/ipaddr.js": { "version": "1.9.1", @@ -713,6 +793,11 @@ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, + "node_modules/jsbn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" + }, "node_modules/jsonwebtoken": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", @@ -1105,9 +1190,9 @@ } }, "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -1192,9 +1277,9 @@ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" }, "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "engines": { "node": ">=6" } @@ -1365,19 +1450,39 @@ "node": ">= 0.8.0" } }, + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -1409,15 +1514,15 @@ } }, "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz", + "integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==", "dependencies": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" }, "engines": { - "node": ">= 10.13.0", + "node": ">= 10.0.0", "npm": ">= 3.0.0" } }, @@ -1430,6 +1535,11 @@ "memory-pager": "^1.0.2" } }, + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" + }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -1554,6 +1664,11 @@ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json index 9a36c3a..287625f 100644 --- a/node_modules/@types/node/package.json +++ b/node_modules/@types/node/package.json @@ -1,218 +1,229 @@ { - "_from": "@types/node@*", - "_id": "@types/node@20.11.24", - "_inBundle": false, - "_integrity": "sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==", - "_location": "/@types/node", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@types/node@*", "name": "@types/node", - "escapedName": "@types%2fnode", - "scope": "@types", - "rawSpec": "*", - "saveSpec": null, - "fetchSpec": "*" - }, - "_requiredBy": [ - "/@types/whatwg-url" - ], - "_resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.24.tgz", - "_shasum": "cc207511104694e84e9fb17f9a0c4c42d4517792", - "_spec": "@types/node@*", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/@types/whatwg-url", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Microsoft TypeScript", - "url": "https://github.com/Microsoft" + "version": "20.11.24", + "description": "TypeScript definitions for node", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node", + "license": "MIT", + "contributors": [ + { + "name": "Microsoft TypeScript", + "githubUsername": "Microsoft", + "url": "https://github.com/Microsoft" + }, + { + "name": "Alberto Schiabel", + "githubUsername": "jkomyno", + "url": "https://github.com/jkomyno" + }, + { + "name": "Alvis HT Tang", + "githubUsername": "alvis", + "url": "https://github.com/alvis" + }, + { + "name": "Andrew Makarov", + "githubUsername": "r3nya", + "url": "https://github.com/r3nya" + }, + { + "name": "Benjamin Toueg", + "githubUsername": "btoueg", + "url": "https://github.com/btoueg" + }, + { + "name": "Chigozirim C.", + "githubUsername": "smac89", + "url": "https://github.com/smac89" + }, + { + "name": "David Junger", + "githubUsername": "touffy", + "url": "https://github.com/touffy" + }, + { + "name": "Deividas Bakanas", + "githubUsername": "DeividasBakanas", + "url": "https://github.com/DeividasBakanas" + }, + { + "name": "Eugene Y. Q. Shen", + "githubUsername": "eyqs", + "url": "https://github.com/eyqs" + }, + { + "name": "Hannes Magnusson", + "githubUsername": "Hannes-Magnusson-CK", + "url": "https://github.com/Hannes-Magnusson-CK" + }, + { + "name": "Huw", + "githubUsername": "hoo29", + "url": "https://github.com/hoo29" + }, + { + "name": "Kelvin Jin", + "githubUsername": "kjin", + "url": "https://github.com/kjin" + }, + { + "name": "Klaus Meinhardt", + "githubUsername": "ajafff", + "url": "https://github.com/ajafff" + }, + { + "name": "Lishude", + "githubUsername": "islishude", + "url": "https://github.com/islishude" + }, + { + "name": "Mariusz Wiktorczyk", + "githubUsername": "mwiktorczyk", + "url": "https://github.com/mwiktorczyk" + }, + { + "name": "Mohsen Azimi", + "githubUsername": "mohsen1", + "url": "https://github.com/mohsen1" + }, + { + "name": "Nicolas Even", + "githubUsername": "n-e", + "url": "https://github.com/n-e" + }, + { + "name": "Nikita Galkin", + "githubUsername": "galkin", + "url": "https://github.com/galkin" + }, + { + "name": "Parambir Singh", + "githubUsername": "parambirs", + "url": "https://github.com/parambirs" + }, + { + "name": "Sebastian Silbermann", + "githubUsername": "eps1lon", + "url": "https://github.com/eps1lon" + }, + { + "name": "Thomas den Hollander", + "githubUsername": "ThomasdenH", + "url": "https://github.com/ThomasdenH" + }, + { + "name": "Wilco Bakker", + "githubUsername": "WilcoBakker", + "url": "https://github.com/WilcoBakker" + }, + { + "name": "wwwy3y3", + "githubUsername": "wwwy3y3", + "url": "https://github.com/wwwy3y3" + }, + { + "name": "Samuel Ainsworth", + "githubUsername": "samuela", + "url": "https://github.com/samuela" + }, + { + "name": "Kyle Uehlein", + "githubUsername": "kuehlein", + "url": "https://github.com/kuehlein" + }, + { + "name": "Thanik Bhongbhibhat", + "githubUsername": "bhongy", + "url": "https://github.com/bhongy" + }, + { + "name": "Marcin Kopacz", + "githubUsername": "chyzwar", + "url": "https://github.com/chyzwar" + }, + { + "name": "Trivikram Kamat", + "githubUsername": "trivikr", + "url": "https://github.com/trivikr" + }, + { + "name": "Junxiao Shi", + "githubUsername": "yoursunny", + "url": "https://github.com/yoursunny" + }, + { + "name": "Ilia Baryshnikov", + "githubUsername": "qwelias", + "url": "https://github.com/qwelias" + }, + { + "name": "ExE Boss", + "githubUsername": "ExE-Boss", + "url": "https://github.com/ExE-Boss" + }, + { + "name": "Piotr Błażejewicz", + "githubUsername": "peterblazejewicz", + "url": "https://github.com/peterblazejewicz" + }, + { + "name": "Anna Henningsen", + "githubUsername": "addaleax", + "url": "https://github.com/addaleax" + }, + { + "name": "Victor Perin", + "githubUsername": "victorperin", + "url": "https://github.com/victorperin" + }, + { + "name": "Yongsheng Zhang", + "githubUsername": "ZYSzys", + "url": "https://github.com/ZYSzys" + }, + { + "name": "NodeJS Contributors", + "githubUsername": "NodeJS", + "url": "https://github.com/NodeJS" + }, + { + "name": "Linus Unnebäck", + "githubUsername": "LinusU", + "url": "https://github.com/LinusU" + }, + { + "name": "wafuwafu13", + "githubUsername": "wafuwafu13", + "url": "https://github.com/wafuwafu13" + }, + { + "name": "Matteo Collina", + "githubUsername": "mcollina", + "url": "https://github.com/mcollina" + }, + { + "name": "Dmitry Semigradsky", + "githubUsername": "Semigradsky", + "url": "https://github.com/Semigradsky" + } + ], + "main": "", + "types": "index.d.ts", + "typesVersions": { + "<=4.8": { + "*": [ + "ts4.8/*" + ] + } }, - { - "name": "Alberto Schiabel", - "url": "https://github.com/jkomyno" + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" }, - { - "name": "Alvis HT Tang", - "url": "https://github.com/alvis" + "scripts": {}, + "dependencies": { + "undici-types": "~5.26.4" }, - { - "name": "Andrew Makarov", - "url": "https://github.com/r3nya" - }, - { - "name": "Benjamin Toueg", - "url": "https://github.com/btoueg" - }, - { - "name": "Chigozirim C.", - "url": "https://github.com/smac89" - }, - { - "name": "David Junger", - "url": "https://github.com/touffy" - }, - { - "name": "Deividas Bakanas", - "url": "https://github.com/DeividasBakanas" - }, - { - "name": "Eugene Y. Q. Shen", - "url": "https://github.com/eyqs" - }, - { - "name": "Hannes Magnusson", - "url": "https://github.com/Hannes-Magnusson-CK" - }, - { - "name": "Huw", - "url": "https://github.com/hoo29" - }, - { - "name": "Kelvin Jin", - "url": "https://github.com/kjin" - }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff" - }, - { - "name": "Lishude", - "url": "https://github.com/islishude" - }, - { - "name": "Mariusz Wiktorczyk", - "url": "https://github.com/mwiktorczyk" - }, - { - "name": "Mohsen Azimi", - "url": "https://github.com/mohsen1" - }, - { - "name": "Nicolas Even", - "url": "https://github.com/n-e" - }, - { - "name": "Nikita Galkin", - "url": "https://github.com/galkin" - }, - { - "name": "Parambir Singh", - "url": "https://github.com/parambirs" - }, - { - "name": "Sebastian Silbermann", - "url": "https://github.com/eps1lon" - }, - { - "name": "Thomas den Hollander", - "url": "https://github.com/ThomasdenH" - }, - { - "name": "Wilco Bakker", - "url": "https://github.com/WilcoBakker" - }, - { - "name": "wwwy3y3", - "url": "https://github.com/wwwy3y3" - }, - { - "name": "Samuel Ainsworth", - "url": "https://github.com/samuela" - }, - { - "name": "Kyle Uehlein", - "url": "https://github.com/kuehlein" - }, - { - "name": "Thanik Bhongbhibhat", - "url": "https://github.com/bhongy" - }, - { - "name": "Marcin Kopacz", - "url": "https://github.com/chyzwar" - }, - { - "name": "Trivikram Kamat", - "url": "https://github.com/trivikr" - }, - { - "name": "Junxiao Shi", - "url": "https://github.com/yoursunny" - }, - { - "name": "Ilia Baryshnikov", - "url": "https://github.com/qwelias" - }, - { - "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" - }, - { - "name": "Piotr Błażejewicz", - "url": "https://github.com/peterblazejewicz" - }, - { - "name": "Anna Henningsen", - "url": "https://github.com/addaleax" - }, - { - "name": "Victor Perin", - "url": "https://github.com/victorperin" - }, - { - "name": "Yongsheng Zhang", - "url": "https://github.com/ZYSzys" - }, - { - "name": "NodeJS Contributors", - "url": "https://github.com/NodeJS" - }, - { - "name": "Linus Unnebäck", - "url": "https://github.com/LinusU" - }, - { - "name": "wafuwafu13", - "url": "https://github.com/wafuwafu13" - }, - { - "name": "Matteo Collina", - "url": "https://github.com/mcollina" - }, - { - "name": "Dmitry Semigradsky", - "url": "https://github.com/Semigradsky" - } - ], - "dependencies": { - "undici-types": "~5.26.4" - }, - "deprecated": false, - "description": "TypeScript definitions for node", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node", - "license": "MIT", - "main": "", - "name": "@types/node", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/node" - }, - "scripts": {}, - "typeScriptVersion": "4.6", - "types": "index.d.ts", - "typesPublisherContentHash": "ef6079276e2a7ef8ab1a543aece8e392f30de6dea7ef6fca909969095e46f4b8", - "typesVersions": { - "<=4.8": { - "*": [ - "ts4.8/*" - ] - } - }, - "version": "20.11.24" -} + "typesPublisherContentHash": "ef6079276e2a7ef8ab1a543aece8e392f30de6dea7ef6fca909969095e46f4b8", + "typeScriptVersion": "4.6" +} \ No newline at end of file diff --git a/node_modules/@types/webidl-conversions/package.json b/node_modules/@types/webidl-conversions/package.json index f4b0590..21fdb95 100644 --- a/node_modules/@types/webidl-conversions/package.json +++ b/node_modules/@types/webidl-conversions/package.json @@ -1,57 +1,30 @@ { - "_from": "@types/webidl-conversions@*", - "_id": "@types/webidl-conversions@7.0.3", - "_inBundle": false, - "_integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==", - "_location": "/@types/webidl-conversions", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@types/webidl-conversions@*", "name": "@types/webidl-conversions", - "escapedName": "@types%2fwebidl-conversions", - "scope": "@types", - "rawSpec": "*", - "saveSpec": null, - "fetchSpec": "*" - }, - "_requiredBy": [ - "/@types/whatwg-url" - ], - "_resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", - "_shasum": "1306dbfa53768bcbcfc95a1c8cde367975581859", - "_spec": "@types/webidl-conversions@*", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/@types/whatwg-url", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "version": "7.0.3", + "description": "TypeScript definitions for webidl-conversions", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webidl-conversions", + "license": "MIT", + "contributors": [ + { + "name": "ExE Boss", + "githubUsername": "ExE-Boss", + "url": "https://github.com/ExE-Boss" + }, + { + "name": "BendingBender", + "githubUsername": "BendingBender", + "url": "https://github.com/BendingBender" + } + ], + "main": "", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/webidl-conversions" }, - { - "name": "BendingBender", - "url": "https://github.com/BendingBender" - } - ], - "dependencies": {}, - "deprecated": false, - "description": "TypeScript definitions for webidl-conversions", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webidl-conversions", - "license": "MIT", - "main": "", - "name": "@types/webidl-conversions", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/webidl-conversions" - }, - "scripts": {}, - "typeScriptVersion": "4.5", - "types": "index.d.ts", - "typesPublisherContentHash": "ff1514e10869784e8b7cca9c4099a4213d3f14b48c198b1bf116300df94bf608", - "version": "7.0.3" -} + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "ff1514e10869784e8b7cca9c4099a4213d3f14b48c198b1bf116300df94bf608", + "typeScriptVersion": "4.5" +} \ No newline at end of file diff --git a/node_modules/@types/whatwg-url/package.json b/node_modules/@types/whatwg-url/package.json index 5b27528..120d490 100755 --- a/node_modules/@types/whatwg-url/package.json +++ b/node_modules/@types/whatwg-url/package.json @@ -1,60 +1,33 @@ { - "_from": "@types/whatwg-url@^8.2.1", - "_id": "@types/whatwg-url@8.2.2", - "_inBundle": false, - "_integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", - "_location": "/@types/whatwg-url", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@types/whatwg-url@^8.2.1", "name": "@types/whatwg-url", - "escapedName": "@types%2fwhatwg-url", - "scope": "@types", - "rawSpec": "^8.2.1", - "saveSpec": null, - "fetchSpec": "^8.2.1" - }, - "_requiredBy": [ - "/mongodb-connection-string-url" - ], - "_resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", - "_shasum": "749d5b3873e845897ada99be4448041d4cc39e63", - "_spec": "@types/whatwg-url@^8.2.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongodb-connection-string-url", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Alexander Marks", - "url": "https://github.com/aomarks" + "version": "8.2.2", + "description": "TypeScript definitions for whatwg-url", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/whatwg-url", + "license": "MIT", + "contributors": [ + { + "name": "Alexander Marks", + "url": "https://github.com/aomarks", + "githubUsername": "aomarks" + }, + { + "name": "ExE Boss", + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" + } + ], + "main": "", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/whatwg-url" }, - { - "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" - } - ], - "dependencies": { - "@types/node": "*", - "@types/webidl-conversions": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for whatwg-url", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/whatwg-url", - "license": "MIT", - "main": "", - "name": "@types/whatwg-url", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/whatwg-url" - }, - "scripts": {}, - "typeScriptVersion": "4.0", - "types": "index.d.ts", - "typesPublisherContentHash": "ea85d67c501583ff421cfbf206fafac0410c464edef169a6d88e06ecfe226dfc", - "version": "8.2.2" -} + "scripts": {}, + "dependencies": { + "@types/node": "*", + "@types/webidl-conversions": "*" + }, + "typesPublisherContentHash": "ea85d67c501583ff421cfbf206fafac0410c464edef169a6d88e06ecfe226dfc", + "typeScriptVersion": "4.0" +} \ No newline at end of file diff --git a/node_modules/abbrev/package.json b/node_modules/abbrev/package.json index 399cb81..bf4e801 100644 --- a/node_modules/abbrev/package.json +++ b/node_modules/abbrev/package.json @@ -1,56 +1,21 @@ { - "_from": "abbrev@1", - "_id": "abbrev@1.1.1", - "_inBundle": false, - "_integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "_location": "/abbrev", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "abbrev@1", - "name": "abbrev", - "escapedName": "abbrev", - "rawSpec": "1", - "saveSpec": null, - "fetchSpec": "1" - }, - "_requiredBy": [ - "/nopt" - ], - "_resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "_shasum": "f8f2c887ad10bf67f634f005b6987fed3179aac8", - "_spec": "abbrev@1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nopt", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me" - }, - "bugs": { - "url": "https://github.com/isaacs/abbrev-js/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "abbrev", + "version": "1.1.1", "description": "Like ruby's abbrev module, but in js", + "author": "Isaac Z. Schlueter ", + "main": "abbrev.js", + "scripts": { + "test": "tap test.js --100", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, + "repository": "http://github.com/isaacs/abbrev-js", + "license": "ISC", "devDependencies": { "tap": "^10.1" }, "files": [ "abbrev.js" - ], - "homepage": "https://github.com/isaacs/abbrev-js#readme", - "license": "ISC", - "main": "abbrev.js", - "name": "abbrev", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/isaacs/abbrev-js.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap test.js --100" - }, - "version": "1.1.1" + ] } diff --git a/node_modules/accepts/package.json b/node_modules/accepts/package.json index c749672..0f2d15d 100644 --- a/node_modules/accepts/package.json +++ b/node_modules/accepts/package.json @@ -1,48 +1,17 @@ { - "_from": "accepts@~1.3.8", - "_id": "accepts@1.3.8", - "_inBundle": false, - "_integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "_location": "/accepts", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "accepts@~1.3.8", - "name": "accepts", - "escapedName": "accepts", - "rawSpec": "~1.3.8", - "saveSpec": null, - "fetchSpec": "~1.3.8" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "_shasum": "0bf0be125b67014adcb0b0921e62db7bffe16b2e", - "_spec": "accepts@~1.3.8", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "bugs": { - "url": "https://github.com/jshttp/accepts/issues" - }, - "bundleDependencies": false, + "name": "accepts", + "description": "Higher-level content negotiation", + "version": "1.3.8", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" ], + "license": "MIT", + "repository": "jshttp/accepts", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" }, - "deprecated": false, - "description": "Higher-level content negotiation", "devDependencies": { "deep-equal": "1.0.1", "eslint": "7.32.0", @@ -55,26 +24,13 @@ "mocha": "9.2.0", "nyc": "15.1.0" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "LICENSE", "HISTORY.md", "index.js" ], - "homepage": "https://github.com/jshttp/accepts#readme", - "keywords": [ - "content", - "negotiation", - "accept", - "accepts" - ], - "license": "MIT", - "name": "accepts", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/accepts.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "lint": "eslint .", @@ -82,5 +38,10 @@ "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" }, - "version": "1.3.8" + "keywords": [ + "content", + "negotiation", + "accept", + "accepts" + ] } diff --git a/node_modules/afinn-165-financialmarketnews/package.json b/node_modules/afinn-165-financialmarketnews/package.json index 6919e8a..12723dc 100644 --- a/node_modules/afinn-165-financialmarketnews/package.json +++ b/node_modules/afinn-165-financialmarketnews/package.json @@ -1,65 +1,8 @@ { - "_from": "afinn-165-financialmarketnews@^3.0.0", - "_id": "afinn-165-financialmarketnews@3.0.0", - "_inBundle": false, - "_integrity": "sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw==", - "_location": "/afinn-165-financialmarketnews", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "afinn-165-financialmarketnews@^3.0.0", - "name": "afinn-165-financialmarketnews", - "escapedName": "afinn-165-financialmarketnews", - "rawSpec": "^3.0.0", - "saveSpec": null, - "fetchSpec": "^3.0.0" - }, - "_requiredBy": [ - "/natural" - ], - "_resolved": "https://registry.npmjs.org/afinn-165-financialmarketnews/-/afinn-165-financialmarketnews-3.0.0.tgz", - "_shasum": "cf422577775bf94f9bc156f3f001a1f29338c3d8", - "_spec": "afinn-165-financialmarketnews@^3.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Ryan O'Day", - "email": "romanguy722@gmail.com" - }, - "bugs": { - "url": "https://github.com/words/afinn-165/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Ryan O'Day", - "email": "romanguy722@gmail.com" - }, - { - "name": "Titus Wormer", - "email": "tituswormer@gmail.com", - "url": "https://wooorm.com" - } - ], - "deprecated": false, + "name": "afinn-165-financialmarketnews", + "version": "3.0.0", "description": "AFINN 165 (list of English words rated for valence) in JSON with added words and modifications for financial market news", - "devDependencies": { - "@types/d3-dsv": "^3.0.0", - "@types/node": "^18.0.0", - "c8": "^7.0.0", - "d3-dsv": "^3.0.0", - "node-fetch": "^3.0.0", - "typescript": "^4.0.0" - }, - "files": [ - "index.d.ts", - "index.js" - ], - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - }, - "homepage": "https://github.com/theryan722/afinn-165-financialmarketnews#readme", + "license": "MIT", "keywords": [ "anew", "afinn", @@ -72,19 +15,35 @@ "text", "microblogs" ], - "license": "MIT", + "repository": "theryan722/afinn-165-financialmarketnews", + "bugs": "https://github.com/words/afinn-165/issues", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + }, + "author": "Ryan O'Day ", + "contributors": [ + "Ryan O'Day ", + "Titus Wormer (https://wooorm.com)" + ], + "sideEffects": false, "main": "index.js", - "name": "afinn-165-financialmarketnews", - "repository": { - "type": "git", - "url": "git+https://github.com/theryan722/afinn-165-financialmarketnews.git" + "types": "index.d.ts", + "files": [ + "index.d.ts", + "index.js" + ], + "devDependencies": { + "@types/d3-dsv": "^3.0.0", + "@types/node": "^18.0.0", + "c8": "^7.0.0", + "d3-dsv": "^3.0.0", + "node-fetch": "^3.0.0", + "typescript": "^4.0.0" }, "scripts": { - "build": "tsc --build --clean && tsc --build && type-coverage", + "prepack": "npm run build", "generate": "node build.js", - "prepack": "npm run build" - }, - "sideEffects": false, - "types": "index.d.ts", - "version": "3.0.0" + "build": "tsc --build --clean && tsc --build && type-coverage" + } } diff --git a/node_modules/afinn-165/package.json b/node_modules/afinn-165/package.json index 3d4a1ad..03c376c 100644 --- a/node_modules/afinn-165/package.json +++ b/node_modules/afinn-165/package.json @@ -1,46 +1,35 @@ { - "_from": "afinn-165@^1.0.2", - "_id": "afinn-165@1.0.4", - "_inBundle": false, - "_integrity": "sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA==", - "_location": "/afinn-165", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "afinn-165@^1.0.2", - "name": "afinn-165", - "escapedName": "afinn-165", - "rawSpec": "^1.0.2", - "saveSpec": null, - "fetchSpec": "^1.0.2" - }, - "_requiredBy": [ - "/natural" + "name": "afinn-165", + "version": "1.0.4", + "description": "AFINN 165 (list of English words rated for valence) in JSON", + "license": "MIT", + "keywords": [ + "anew", + "afinn", + "word", + "list", + "sentiment", + "analysis", + "opinion", + "mining", + "text", + "microblogs" ], - "_resolved": "https://registry.npmjs.org/afinn-165/-/afinn-165-1.0.4.tgz", - "_shasum": "3abf6b8922dd5db84d84e0abd155924381dd73a4", - "_spec": "afinn-165@^1.0.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Titus Wormer", - "email": "tituswormer@gmail.com", - "url": "https://wooorm.com" + "repository": "words/afinn-165", + "bugs": "https://github.com/words/afinn-165/issues", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" }, - "bugs": { - "url": "https://github.com/words/afinn-165/issues" - }, - "bundleDependencies": false, + "author": "Titus Wormer (https://wooorm.com)", "contributors": [ - { - "name": "Titus Wormer", - "email": "tituswormer@gmail.com", - "url": "https://wooorm.com" - } + "Titus Wormer (https://wooorm.com)" + ], + "main": "index.json", + "files": [ + "index.json" ], "dependencies": {}, - "deprecated": false, - "description": "AFINN 165 (list of English words rated for valence) in JSON", "devDependencies": { "bail": "^1.0.0", "browserify": "^16.0.0", @@ -55,29 +44,15 @@ "wrap-stream": "^2.0.0", "xo": "^0.25.0" }, - "files": [ - "index.json" - ], - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "scripts": { + "generate": "node build", + "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix", + "build-bundle": "browserify index.json -s afinn165 -o afinn-165.js", + "build-mangle": "browserify index.json -s afinn165 -p tinyify -o afinn-165.min.js", + "build": "npm run build-bundle && npm run build-mangle", + "test-api": "node test", + "test": "npm run format && npm run build && npm run test-api" }, - "homepage": "https://github.com/words/afinn-165#readme", - "keywords": [ - "anew", - "afinn", - "word", - "list", - "sentiment", - "analysis", - "opinion", - "mining", - "text", - "microblogs" - ], - "license": "MIT", - "main": "index.json", - "name": "afinn-165", "prettier": { "tabWidth": 2, "useTabs": false, @@ -86,30 +61,16 @@ "semi": false, "trailingComma": "none" }, - "remarkConfig": { - "plugins": [ - "preset-wooorm" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/words/afinn-165.git" - }, - "scripts": { - "build": "npm run build-bundle && npm run build-mangle", - "build-bundle": "browserify index.json -s afinn165 -o afinn-165.js", - "build-mangle": "browserify index.json -s afinn165 -p tinyify -o afinn-165.min.js", - "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix", - "generate": "node build", - "test": "npm run format && npm run build && npm run test-api", - "test-api": "node test" - }, - "version": "1.0.4", "xo": { "prettier": true, "esnext": false, "ignores": [ "afinn-165.js" ] + }, + "remarkConfig": { + "plugins": [ + "preset-wooorm" + ] } } diff --git a/node_modules/anymatch/package.json b/node_modules/anymatch/package.json index f9390c8..2cb2307 100644 --- a/node_modules/anymatch/package.json +++ b/node_modules/anymatch/package.json @@ -1,53 +1,25 @@ { - "_from": "anymatch@~3.1.2", - "_id": "anymatch@3.1.3", - "_inBundle": false, - "_integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "_location": "/anymatch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "anymatch@~3.1.2", - "name": "anymatch", - "escapedName": "anymatch", - "rawSpec": "~3.1.2", - "saveSpec": null, - "fetchSpec": "~3.1.2" - }, - "_requiredBy": [ - "/chokidar" - ], - "_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "_shasum": "790c58b19ba1720a84205b57c618d5ad8524973e", - "_spec": "anymatch@~3.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/chokidar", - "author": { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - "bugs": { - "url": "https://github.com/micromatch/anymatch/issues" - }, - "bundleDependencies": false, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "deprecated": false, + "name": "anymatch", + "version": "3.1.3", "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", - "devDependencies": { - "mocha": "^6.1.3", - "nyc": "^14.0.0" - }, - "engines": { - "node": ">= 8" - }, "files": [ "index.js", "index.d.ts" ], + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "author": { + "name": "Elan Shanker", + "url": "https://github.com/es128" + }, + "license": "ISC", "homepage": "https://github.com/micromatch/anymatch", + "repository": { + "type": "git", + "url": "https://github.com/micromatch/anymatch" + }, "keywords": [ "match", "any", @@ -62,15 +34,15 @@ "expression", "function" ], - "license": "ISC", - "name": "anymatch", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/anymatch.git" - }, "scripts": { - "mocha": "mocha", - "test": "nyc mocha" + "test": "nyc mocha", + "mocha": "mocha" }, - "version": "3.1.3" + "devDependencies": { + "mocha": "^6.1.3", + "nyc": "^14.0.0" + }, + "engines": { + "node": ">= 8" + } } diff --git a/node_modules/apparatus/package.json b/node_modules/apparatus/package.json index 0f29d4e..6973b51 100644 --- a/node_modules/apparatus/package.json +++ b/node_modules/apparatus/package.json @@ -1,47 +1,25 @@ { - "_from": "apparatus@^0.0.10", - "_id": "apparatus@0.0.10", - "_inBundle": false, - "_integrity": "sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg==", - "_location": "/apparatus", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "apparatus@^0.0.10", - "name": "apparatus", - "escapedName": "apparatus", - "rawSpec": "^0.0.10", - "saveSpec": null, - "fetchSpec": "^0.0.10" - }, - "_requiredBy": [ - "/natural" - ], - "_resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.10.tgz", - "_shasum": "81ea756772ada77863db54ceee8202c109bdca3e", - "_spec": "apparatus@^0.0.10", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Chris Umbel", - "email": "chris@chrisumbel.com" - }, - "bugs": { - "url": "https://github.com/NaturalNode/apparatus/issues" - }, - "bundleDependencies": false, - "dependencies": { - "sylvester": ">= 0.0.8" - }, - "deprecated": false, + "name": "apparatus", "description": "various machine learning routines for node", - "devDependencies": { - "jasmine-node": ">=1.0.26" + "version": "0.0.10", + "repository": { + "type": "git", + "url": "https://github.com/NaturalNode/apparatus" }, + "license": "MIT", "engines": { "node": ">=0.2.6" }, - "homepage": "https://github.com/NaturalNode/apparatus#readme", + "dependencies": { + "sylvester": ">= 0.0.8" + }, + "devDependencies": { + "jasmine-node": ">=1.0.26" + }, + "scripts": { + "test": "./node_modules/jasmine-node/bin/jasmine-node ." + }, + "author": "Chris Umbel ", "keywords": [ "machine", "learning", @@ -53,22 +31,12 @@ "logistic", "regression" ], - "license": "MIT", "main": "./lib/apparatus/index.js", "maintainers": [ { "name": "Chris Umbel", "email": "chris@chrisumbel.com", - "url": "http://www.chrisumbel.com" + "web": "http://www.chrisumbel.com" } - ], - "name": "apparatus", - "repository": { - "type": "git", - "url": "git+https://github.com/NaturalNode/apparatus.git" - }, - "scripts": { - "test": "./node_modules/jasmine-node/bin/jasmine-node ." - }, - "version": "0.0.10" + ] } diff --git a/node_modules/append-field/package.json b/node_modules/append-field/package.json index 3496dcc..8d6e716 100644 --- a/node_modules/append-field/package.json +++ b/node_modules/append-field/package.json @@ -1,52 +1,19 @@ { - "_from": "append-field@^1.0.0", - "_id": "append-field@1.0.0", - "_inBundle": false, - "_integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==", - "_location": "/append-field", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "append-field@^1.0.0", - "name": "append-field", - "escapedName": "append-field", - "rawSpec": "^1.0.0", - "saveSpec": null, - "fetchSpec": "^1.0.0" - }, - "_requiredBy": [ - "/multer" - ], - "_resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", - "_shasum": "1e3440e915f0b1203d23748e78edd7b9b5b43e56", - "_spec": "append-field@^1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/multer", - "author": { - "name": "Linus Unnebäck", - "email": "linus@folkdatorn.se" - }, - "bugs": { - "url": "https://github.com/LinusU/node-append-field/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "A [W3C HTML JSON forms spec](http://www.w3.org/TR/html-json-forms/) compliant field appender (for lack of a better name). Useful for people implementing `application/x-www-form-urlencoded` and `multipart/form-data` parsers.", + "name": "append-field", + "version": "1.0.0", + "license": "MIT", + "author": "Linus Unnebäck ", + "main": "index.js", "devDependencies": { "mocha": "^2.2.4", "standard": "^6.0.5", "testdata-w3c-json-form": "^0.2.0" }, - "homepage": "https://github.com/LinusU/node-append-field#readme", - "license": "MIT", - "main": "index.js", - "name": "append-field", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/LinusU/node-append-field.git" - }, "scripts": { "test": "standard && mocha" }, - "version": "1.0.0" + "repository": { + "type": "git", + "url": "http://github.com/LinusU/node-append-field.git" + } } diff --git a/node_modules/array-flatten/package.json b/node_modules/array-flatten/package.json index 5f92392..1a24e2a 100644 --- a/node_modules/array-flatten/package.json +++ b/node_modules/array-flatten/package.json @@ -1,64 +1,39 @@ { - "_from": "array-flatten@1.1.1", - "_id": "array-flatten@1.1.1", - "_inBundle": false, - "_integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "_location": "/array-flatten", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "array-flatten@1.1.1", - "name": "array-flatten", - "escapedName": "array-flatten", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "_shasum": "9a5f699051b1e7073328f2a008968b64ea2955d2", - "_spec": "array-flatten@1.1.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "Blake Embrey", - "email": "hello@blakeembrey.com", - "url": "http://blakeembrey.me" - }, - "bugs": { - "url": "https://github.com/blakeembrey/array-flatten/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "array-flatten", + "version": "1.1.1", "description": "Flatten an array of nested arrays into a single flat array", - "devDependencies": { - "istanbul": "^0.3.13", - "mocha": "^2.2.4", - "pre-commit": "^1.0.7", - "standard": "^3.7.3" - }, + "main": "array-flatten.js", "files": [ "array-flatten.js", "LICENSE" ], - "homepage": "https://github.com/blakeembrey/array-flatten", + "scripts": { + "test": "istanbul cover _mocha -- -R spec" + }, + "repository": { + "type": "git", + "url": "git://github.com/blakeembrey/array-flatten.git" + }, "keywords": [ "array", "flatten", "arguments", "depth" ], + "author": { + "name": "Blake Embrey", + "email": "hello@blakeembrey.com", + "url": "http://blakeembrey.me" + }, "license": "MIT", - "main": "array-flatten.js", - "name": "array-flatten", - "repository": { - "type": "git", - "url": "git://github.com/blakeembrey/array-flatten.git" + "bugs": { + "url": "https://github.com/blakeembrey/array-flatten/issues" }, - "scripts": { - "test": "istanbul cover _mocha -- -R spec" - }, - "version": "1.1.1" + "homepage": "https://github.com/blakeembrey/array-flatten", + "devDependencies": { + "istanbul": "^0.3.13", + "mocha": "^2.2.4", + "pre-commit": "^1.0.7", + "standard": "^3.7.3" + } } diff --git a/node_modules/asynckit/package.json b/node_modules/asynckit/package.json index 9ad37be..51147d6 100644 --- a/node_modules/asynckit/package.json +++ b/node_modules/asynckit/package.json @@ -1,38 +1,49 @@ { - "_from": "asynckit@^0.4.0", - "_id": "asynckit@0.4.0", - "_inBundle": false, - "_integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "_location": "/asynckit", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "asynckit@^0.4.0", - "name": "asynckit", - "escapedName": "asynckit", - "rawSpec": "^0.4.0", - "saveSpec": null, - "fetchSpec": "^0.4.0" + "name": "asynckit", + "version": "0.4.0", + "description": "Minimal async jobs utility library, with streams support", + "main": "index.js", + "scripts": { + "clean": "rimraf coverage", + "lint": "eslint *.js lib/*.js test/*.js", + "test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec", + "win-test": "tape test/test-*.js", + "browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec", + "report": "istanbul report", + "size": "browserify index.js | size-table asynckit", + "debug": "tape test/test-*.js" }, - "_requiredBy": [ - "/form-data" + "pre-commit": [ + "clean", + "lint", + "test", + "browser", + "report", + "size" ], - "_resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "_shasum": "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79", - "_spec": "asynckit@^0.4.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/form-data", - "author": { - "name": "Alex Indigo", - "email": "iam@alexindigo.com" + "repository": { + "type": "git", + "url": "git+https://github.com/alexindigo/asynckit.git" }, + "keywords": [ + "async", + "jobs", + "parallel", + "serial", + "iterator", + "array", + "object", + "stream", + "destroy", + "terminate", + "abort" + ], + "author": "Alex Indigo ", + "license": "MIT", "bugs": { "url": "https://github.com/alexindigo/asynckit/issues" }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Minimal async jobs utility library, with streams support", + "homepage": "https://github.com/alexindigo/asynckit#readme", "devDependencies": { "browserify": "^13.0.0", "browserify-istanbul": "^2.0.0", @@ -48,44 +59,5 @@ "tap-spec": "^4.1.1", "tape": "^4.5.1" }, - "homepage": "https://github.com/alexindigo/asynckit#readme", - "keywords": [ - "async", - "jobs", - "parallel", - "serial", - "iterator", - "array", - "object", - "stream", - "destroy", - "terminate", - "abort" - ], - "license": "MIT", - "main": "index.js", - "name": "asynckit", - "pre-commit": [ - "clean", - "lint", - "test", - "browser", - "report", - "size" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/alexindigo/asynckit.git" - }, - "scripts": { - "browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec", - "clean": "rimraf coverage", - "debug": "tape test/test-*.js", - "lint": "eslint *.js lib/*.js test/*.js", - "report": "istanbul report", - "size": "browserify index.js | size-table asynckit", - "test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec", - "win-test": "tape test/test-*.js" - }, - "version": "0.4.0" + "dependencies": {} } diff --git a/node_modules/axios/package.json b/node_modules/axios/package.json index 7281b00..cf185bd 100644 --- a/node_modules/axios/package.json +++ b/node_modules/axios/package.json @@ -1,118 +1,84 @@ { - "_from": "axios@1.6.7", - "_id": "axios@1.6.7", - "_inBundle": false, - "_integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", - "_location": "/axios", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "axios@1.6.7", - "name": "axios", - "escapedName": "axios", - "rawSpec": "1.6.7", - "saveSpec": null, - "fetchSpec": "1.6.7" + "name": "axios", + "version": "1.6.7", + "description": "Promise based HTTP client for the browser and node.js", + "main": "index.js", + "exports": { + ".": { + "types": { + "require": "./index.d.cts", + "default": "./index.d.ts" + }, + "browser": { + "require": "./dist/browser/axios.cjs", + "default": "./index.js" + }, + "default": { + "require": "./dist/node/axios.cjs", + "default": "./index.js" + } + }, + "./lib/adapters/http.js": "./lib/adapters/http.js", + "./lib/adapters/xhr.js": "./lib/adapters/xhr.js", + "./unsafe/*": "./lib/*", + "./unsafe/core/settle.js": "./lib/core/settle.js", + "./unsafe/core/buildFullPath.js": "./lib/core/buildFullPath.js", + "./unsafe/helpers/isAbsoluteURL.js": "./lib/helpers/isAbsoluteURL.js", + "./unsafe/helpers/buildURL.js": "./lib/helpers/buildURL.js", + "./unsafe/helpers/combineURLs.js": "./lib/helpers/combineURLs.js", + "./unsafe/adapters/http.js": "./lib/adapters/http.js", + "./unsafe/adapters/xhr.js": "./lib/adapters/xhr.js", + "./unsafe/utils.js": "./lib/utils.js", + "./package.json": "./package.json" }, - "_requiredBy": [ - "/" + "type": "module", + "types": "index.d.ts", + "scripts": { + "test": "npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports", + "test:eslint": "node bin/ssl_hotfix.js eslint lib/**/*.js", + "test:dtslint": "dtslint --localTs node_modules/typescript/lib", + "test:mocha": "node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit", + "test:exports": "node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit", + "test:karma": "node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run", + "test:karma:firefox": "node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run", + "test:karma:server": "node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs", + "test:build:version": "node ./bin/check-build-version.js", + "start": "node ./sandbox/server.js", + "preversion": "gulp version", + "version": "npm run build && git add dist && git add package.json", + "prepublishOnly": "npm run test:build:version", + "postpublish": "git push && git push --tags", + "build": "gulp clear && cross-env NODE_ENV=production rollup -c -m", + "examples": "node ./examples/server.js", + "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", + "fix": "eslint --fix lib/**/*.js", + "prepare": "husky install && npm run prepare:hooks", + "prepare:hooks": "npx husky set .husky/commit-msg \"npx commitlint --edit $1\"", + "release:dry": "release-it --dry-run --no-npm", + "release:info": "release-it --release-version", + "release:beta:no-npm": "release-it --preRelease=beta --no-npm", + "release:beta": "release-it --preRelease=beta", + "release:no-npm": "release-it --no-npm", + "release:changelog:fix": "node ./bin/injectContributorsList.js && git add CHANGELOG.md", + "release": "release-it" + }, + "repository": { + "type": "git", + "url": "https://github.com/axios/axios.git" + }, + "keywords": [ + "xhr", + "http", + "ajax", + "promise", + "node" ], - "_resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", - "_shasum": "7b48c2e27c96f9c68a2f8f31e2ab19f59b06b0a7", - "_spec": "axios@1.6.7", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Matt Zabriskie" - }, - "browser": { - "./lib/adapters/http.js": "./lib/helpers/null.js", - "./lib/platform/node/index.js": "./lib/platform/browser/index.js", - "./lib/platform/node/classes/FormData.js": "./lib/helpers/null.js" - }, + "author": "Matt Zabriskie", + "license": "MIT", "bugs": { "url": "https://github.com/axios/axios/issues" }, - "bundleDependencies": false, - "bundlesize": [ - { - "path": "./dist/axios.min.js", - "threshold": "5kB" - } - ], - "commitlint": { - "rules": { - "header-max-length": [ - 2, - "always", - 130 - ] - }, - "extends": [ - "@commitlint/config-conventional" - ] - }, - "contributors": [ - { - "name": "Matt Zabriskie", - "url": "https://github.com/mzabriskie" - }, - { - "name": "Nick Uraltsev", - "url": "https://github.com/nickuraltsev" - }, - { - "name": "Jay", - "url": "https://github.com/jasonsaayman" - }, - { - "name": "Dmitriy Mozgovoy", - "url": "https://github.com/DigitalBrainJS" - }, - { - "name": "Emily Morehouse", - "url": "https://github.com/emilyemorehouse" - }, - { - "name": "Rubén Norte", - "url": "https://github.com/rubennorte" - }, - { - "name": "Justin Beckwith", - "url": "https://github.com/JustinBeckwith" - }, - { - "name": "Martti Laine", - "url": "https://github.com/codeclown" - }, - { - "name": "Xianming Zhong", - "url": "https://github.com/chinesedfan" - }, - { - "name": "Rikki Gibson", - "url": "https://github.com/RikkiGibson" - }, - { - "name": "Remco Haszing", - "url": "https://github.com/remcohaszing" - }, - { - "name": "Yasu Flores", - "url": "https://github.com/yasuf" - }, - { - "name": "Ben Carp", - "url": "https://github.com/carpben" - } - ], - "dependencies": { - "follow-redirects": "^1.15.4", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - }, - "deprecated": false, - "description": "Promise based HTTP client for the browser and node.js", + "homepage": "https://axios-http.com", "devDependencies": { "@babel/core": "^7.18.2", "@babel/preset-env": "^7.18.2", @@ -171,46 +137,41 @@ "terser-webpack-plugin": "^4.2.3", "typescript": "^4.8.4" }, - "exports": { - ".": { - "types": { - "require": "./index.d.cts", - "default": "./index.d.ts" - }, - "browser": { - "require": "./dist/browser/axios.cjs", - "default": "./index.js" - }, - "default": { - "require": "./dist/node/axios.cjs", - "default": "./index.js" - } - }, - "./lib/adapters/http.js": "./lib/adapters/http.js", - "./lib/adapters/xhr.js": "./lib/adapters/xhr.js", - "./unsafe/*": "./lib/*", - "./unsafe/core/settle.js": "./lib/core/settle.js", - "./unsafe/core/buildFullPath.js": "./lib/core/buildFullPath.js", - "./unsafe/helpers/isAbsoluteURL.js": "./lib/helpers/isAbsoluteURL.js", - "./unsafe/helpers/buildURL.js": "./lib/helpers/buildURL.js", - "./unsafe/helpers/combineURLs.js": "./lib/helpers/combineURLs.js", - "./unsafe/adapters/http.js": "./lib/adapters/http.js", - "./unsafe/adapters/xhr.js": "./lib/adapters/xhr.js", - "./unsafe/utils.js": "./lib/utils.js", - "./package.json": "./package.json" + "browser": { + "./lib/adapters/http.js": "./lib/helpers/null.js", + "./lib/platform/node/index.js": "./lib/platform/browser/index.js", + "./lib/platform/node/classes/FormData.js": "./lib/helpers/null.js" }, - "homepage": "https://axios-http.com", "jsdelivr": "dist/axios.min.js", - "keywords": [ - "xhr", - "http", - "ajax", - "promise", - "node" + "unpkg": "dist/axios.min.js", + "typings": "./index.d.ts", + "dependencies": { + "follow-redirects": "^1.15.4", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + }, + "bundlesize": [ + { + "path": "./dist/axios.min.js", + "threshold": "5kB" + } ], - "license": "MIT", - "main": "index.js", - "name": "axios", + "contributors": [ + "Matt Zabriskie (https://github.com/mzabriskie)", + "Nick Uraltsev (https://github.com/nickuraltsev)", + "Jay (https://github.com/jasonsaayman)", + "Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)", + "Emily Morehouse (https://github.com/emilyemorehouse)", + "Rubén Norte (https://github.com/rubennorte)", + "Justin Beckwith (https://github.com/JustinBeckwith)", + "Martti Laine (https://github.com/codeclown)", + "Xianming Zhong (https://github.com/chinesedfan)", + "Rikki Gibson (https://github.com/RikkiGibson)", + "Remco Haszing (https://github.com/remcohaszing)", + "Yasu Flores (https://github.com/yasuf)", + "Ben Carp (https://github.com/carpben)" + ], + "sideEffects": false, "release-it": { "git": { "commitMessage": "chore(release): v${version}", @@ -242,43 +203,16 @@ "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}." } }, - "repository": { - "type": "git", - "url": "git+https://github.com/axios/axios.git" - }, - "scripts": { - "build": "gulp clear && cross-env NODE_ENV=production rollup -c -m", - "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", - "examples": "node ./examples/server.js", - "fix": "eslint --fix lib/**/*.js", - "postpublish": "git push && git push --tags", - "prepare": "husky install && npm run prepare:hooks", - "prepare:hooks": "npx husky set .husky/commit-msg \"npx commitlint --edit $1\"", - "prepublishOnly": "npm run test:build:version", - "preversion": "gulp version", - "release": "release-it", - "release:beta": "release-it --preRelease=beta", - "release:beta:no-npm": "release-it --preRelease=beta --no-npm", - "release:changelog:fix": "node ./bin/injectContributorsList.js && git add CHANGELOG.md", - "release:dry": "release-it --dry-run --no-npm", - "release:info": "release-it --release-version", - "release:no-npm": "release-it --no-npm", - "start": "node ./sandbox/server.js", - "test": "npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports", - "test:build:version": "node ./bin/check-build-version.js", - "test:dtslint": "dtslint --localTs node_modules/typescript/lib", - "test:eslint": "node bin/ssl_hotfix.js eslint lib/**/*.js", - "test:exports": "node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit", - "test:karma": "node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run", - "test:karma:firefox": "node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run", - "test:karma:server": "node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs", - "test:mocha": "node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit", - "version": "npm run build && git add dist && git add package.json" - }, - "sideEffects": false, - "type": "module", - "types": "index.d.ts", - "typings": "./index.d.ts", - "unpkg": "dist/axios.min.js", - "version": "1.6.7" -} + "commitlint": { + "rules": { + "header-max-length": [ + 2, + "always", + 130 + ] + }, + "extends": [ + "@commitlint/config-conventional" + ] + } +} \ No newline at end of file diff --git a/node_modules/balanced-match/package.json b/node_modules/balanced-match/package.json index ba887a9..ce6073e 100644 --- a/node_modules/balanced-match/package.json +++ b/node_modules/balanced-match/package.json @@ -1,43 +1,21 @@ { - "_from": "balanced-match@^1.0.0", - "_id": "balanced-match@1.0.2", - "_inBundle": false, - "_integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "_location": "/balanced-match", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "balanced-match@^1.0.0", - "name": "balanced-match", - "escapedName": "balanced-match", - "rawSpec": "^1.0.0", - "saveSpec": null, - "fetchSpec": "^1.0.0" - }, - "_requiredBy": [ - "/brace-expansion" - ], - "_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "_shasum": "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee", - "_spec": "balanced-match@^1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/brace-expansion", - "author": { - "name": "Julian Gruber", - "email": "mail@juliangruber.com", - "url": "http://juliangruber.com" - }, - "bugs": { - "url": "https://github.com/juliangruber/balanced-match/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "balanced-match", "description": "Match balanced character pairs, like \"{\" and \"}\"", + "version": "1.0.2", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "homepage": "https://github.com/juliangruber/balanced-match", + "main": "index.js", + "scripts": { + "test": "tape test/test.js", + "bench": "matcha test/bench.js" + }, "devDependencies": { "matcha": "^0.7.0", "tape": "^4.6.0" }, - "homepage": "https://github.com/juliangruber/balanced-match", "keywords": [ "match", "regexp", @@ -45,17 +23,12 @@ "balanced", "parse" ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, "license": "MIT", - "main": "index.js", - "name": "balanced-match", - "repository": { - "type": "git", - "url": "git://github.com/juliangruber/balanced-match.git" - }, - "scripts": { - "bench": "matcha test/bench.js", - "test": "tape test/test.js" - }, "testling": { "files": "test/*.js", "browsers": [ @@ -71,6 +44,5 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "1.0.2" + } } diff --git a/node_modules/bcryptjs/package.json b/node_modules/bcryptjs/package.json index 01cf133..97be5df 100644 --- a/node_modules/bcryptjs/package.json +++ b/node_modules/bcryptjs/package.json @@ -1,71 +1,22 @@ { - "_from": "bcryptjs@2.4.3", - "_id": "bcryptjs@2.4.3", - "_inBundle": false, - "_integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", - "_location": "/bcryptjs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "bcryptjs@2.4.3", - "name": "bcryptjs", - "escapedName": "bcryptjs", - "rawSpec": "2.4.3", - "saveSpec": null, - "fetchSpec": "2.4.3" - }, - "_requiredBy": [ - "/" + "name": "bcryptjs", + "description": "Optimized bcrypt in plain JavaScript with zero dependencies. Compatible to 'bcrypt'.", + "version": "2.4.3", + "author": "Daniel Wirtz ", + "contributors": [ + "Shane Girish (https://github.com/shaneGirish)", + "Alex Murray <> (https://github.com/alexmurray)", + "Nicolas Pelletier <> (https://github.com/NicolasPelletier)", + "Josh Rogers <> (https://github.com/geekymole)", + "Noah Isaacson (https://github.com/nisaacson)" ], - "_resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", - "_shasum": "9ab5627b93e60621ff7cdac5da9733027df1d0cb", - "_spec": "bcryptjs@2.4.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Daniel Wirtz", - "email": "dcode@dcode.io" + "repository": { + "type": "url", + "url": "https://github.com/dcodeIO/bcrypt.js.git" }, - "browser": "dist/bcrypt.js", "bugs": { "url": "https://github.com/dcodeIO/bcrypt.js/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Shane Girish", - "email": "shaneGirish@gmail.com", - "url": "https://github.com/shaneGirish" - }, - { - "name": "Alex Murray", - "url": "https://github.com/alexmurray" - }, - { - "name": "Nicolas Pelletier", - "url": "https://github.com/NicolasPelletier" - }, - { - "name": "Josh Rogers", - "url": "https://github.com/geekymole" - }, - { - "name": "Noah Isaacson", - "email": "noah@nisaacson.com", - "url": "https://github.com/nisaacson" - } - ], - "dependencies": {}, - "deprecated": false, - "description": "Optimized bcrypt in plain JavaScript with zero dependencies. Compatible to 'bcrypt'.", - "devDependencies": { - "bcrypt": "latest", - "closurecompiler": "~1", - "metascript": "~0.18", - "testjs": "~1", - "utfx": "~1" - }, - "homepage": "https://github.com/dcodeIO/bcrypt.js#readme", "keywords": [ "bcrypt", "password", @@ -75,19 +26,22 @@ "crypt", "crypto" ], - "license": "MIT", "main": "index.js", - "name": "bcryptjs", - "repository": { - "type": "url", - "url": "git+https://github.com/dcodeIO/bcrypt.js.git" + "browser": "dist/bcrypt.js", + "dependencies": {}, + "devDependencies": { + "testjs": "~1", + "closurecompiler": "~1", + "metascript": "~0.18", + "bcrypt": "latest", + "utfx": "~1" }, + "license": "MIT", "scripts": { + "test": "node node_modules/testjs/bin/testjs", "build": "node scripts/build.js", "compile": "node node_modules/closurecompiler/bin/ccjs dist/bcrypt.js --compilation_level=SIMPLE_OPTIMIZATIONS --create_source_map=dist/bcrypt.min.map > dist/bcrypt.min.js", "compress": "gzip -c -9 dist/bcrypt.min.js > dist/bcrypt.min.js.gz", - "make": "npm run build && npm run compile && npm run compress && npm test", - "test": "node node_modules/testjs/bin/testjs" - }, - "version": "2.4.3" + "make": "npm run build && npm run compile && npm run compress && npm test" + } } diff --git a/node_modules/binary-extensions/package.json b/node_modules/binary-extensions/package.json index a094db2..c4d3641 100644 --- a/node_modules/binary-extensions/package.json +++ b/node_modules/binary-extensions/package.json @@ -1,70 +1,38 @@ { - "_from": "binary-extensions@^2.0.0", - "_id": "binary-extensions@2.2.0", - "_inBundle": false, - "_integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "_location": "/binary-extensions", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "binary-extensions@^2.0.0", - "name": "binary-extensions", - "escapedName": "binary-extensions", - "rawSpec": "^2.0.0", - "saveSpec": null, - "fetchSpec": "^2.0.0" - }, - "_requiredBy": [ - "/is-binary-path" - ], - "_resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "_shasum": "75f502eeaf9ffde42fc98829645be4ea76bd9e2d", - "_spec": "binary-extensions@^2.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/is-binary-path", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/binary-extensions/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "List of binary file extensions", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts", - "binary-extensions.json", - "binary-extensions.json.d.ts" - ], - "homepage": "https://github.com/sindresorhus/binary-extensions#readme", - "keywords": [ - "binary", - "extensions", - "extension", - "file", - "json", - "list", - "array" - ], - "license": "MIT", - "name": "binary-extensions", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/binary-extensions.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.2.0" + "name": "binary-extensions", + "version": "2.2.0", + "description": "List of binary file extensions", + "license": "MIT", + "repository": "sindresorhus/binary-extensions", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "binary-extensions.json", + "binary-extensions.json.d.ts" + ], + "keywords": [ + "binary", + "extensions", + "extension", + "file", + "json", + "list", + "array" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } diff --git a/node_modules/body-parser/package.json b/node_modules/body-parser/package.json index 043e71c..4637304 100644 --- a/node_modules/body-parser/package.json +++ b/node_modules/body-parser/package.json @@ -1,42 +1,13 @@ { - "_from": "body-parser@1.20.2", - "_id": "body-parser@1.20.2", - "_inBundle": false, - "_integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "_location": "/body-parser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "body-parser@1.20.2", - "name": "body-parser", - "escapedName": "body-parser", - "rawSpec": "1.20.2", - "saveSpec": null, - "fetchSpec": "1.20.2" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "_shasum": "6feb0e21c4724d06de7ff38da36dad4f57a747fd", - "_spec": "body-parser@1.20.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "bugs": { - "url": "https://github.com/expressjs/body-parser/issues" - }, - "bundleDependencies": false, + "name": "body-parser", + "description": "Node.js body parsing middleware", + "version": "1.20.2", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" ], + "license": "MIT", + "repository": "expressjs/body-parser", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", @@ -51,8 +22,6 @@ "type-is": "~1.6.18", "unpipe": "1.0.0" }, - "deprecated": false, - "description": "Node.js body parsing middleware", "devDependencies": { "eslint": "8.34.0", "eslint-config-standard": "14.1.1", @@ -67,10 +36,6 @@ "safe-buffer": "5.2.1", "supertest": "6.3.3" }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - }, "files": [ "lib/", "LICENSE", @@ -78,18 +43,14 @@ "SECURITY.md", "index.js" ], - "homepage": "https://github.com/expressjs/body-parser#readme", - "license": "MIT", - "name": "body-parser", - "repository": { - "type": "git", - "url": "git+https://github.com/expressjs/body-parser.git" + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" }, "scripts": { "lint": "eslint .", "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "1.20.2" + } } diff --git a/node_modules/brace-expansion/package.json b/node_modules/brace-expansion/package.json index 02d9d75..a18faa8 100644 --- a/node_modules/brace-expansion/package.json +++ b/node_modules/brace-expansion/package.json @@ -1,60 +1,33 @@ { - "_from": "brace-expansion@^1.1.7", - "_id": "brace-expansion@1.1.11", - "_inBundle": false, - "_integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "_location": "/brace-expansion", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "brace-expansion@^1.1.7", - "name": "brace-expansion", - "escapedName": "brace-expansion", - "rawSpec": "^1.1.7", - "saveSpec": null, - "fetchSpec": "^1.1.7" + "name": "brace-expansion", + "description": "Brace expansion as known from sh/bash", + "version": "1.1.11", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/brace-expansion.git" }, - "_requiredBy": [ - "/minimatch" - ], - "_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "_shasum": "3c7fcbf529d87226f3d2f52b966ff5271eb441dd", - "_spec": "brace-expansion@^1.1.7", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/minimatch", + "homepage": "https://github.com/juliangruber/brace-expansion", + "main": "index.js", + "scripts": { + "test": "tape test/*.js", + "gentest": "bash test/generate.sh", + "bench": "matcha test/perf/bench.js" + }, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "devDependencies": { + "matcha": "^0.7.0", + "tape": "^4.6.0" + }, + "keywords": [], "author": { "name": "Julian Gruber", "email": "mail@juliangruber.com", "url": "http://juliangruber.com" }, - "bugs": { - "url": "https://github.com/juliangruber/brace-expansion/issues" - }, - "bundleDependencies": false, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - }, - "deprecated": false, - "description": "Brace expansion as known from sh/bash", - "devDependencies": { - "matcha": "^0.7.0", - "tape": "^4.6.0" - }, - "homepage": "https://github.com/juliangruber/brace-expansion", - "keywords": [], "license": "MIT", - "main": "index.js", - "name": "brace-expansion", - "repository": { - "type": "git", - "url": "git://github.com/juliangruber/brace-expansion.git" - }, - "scripts": { - "bench": "matcha test/perf/bench.js", - "gentest": "bash test/generate.sh", - "test": "tape test/*.js" - }, "testling": { "files": "test/*.js", "browsers": [ @@ -70,6 +43,5 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "1.1.11" + } } diff --git a/node_modules/braces/package.json b/node_modules/braces/package.json index 785eb1e..3f52e34 100644 --- a/node_modules/braces/package.json +++ b/node_modules/braces/package.json @@ -1,76 +1,42 @@ { - "_from": "braces@~3.0.2", - "_id": "braces@3.0.2", - "_inBundle": false, - "_integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "_location": "/braces", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "braces@~3.0.2", - "name": "braces", - "escapedName": "braces", - "rawSpec": "~3.0.2", - "saveSpec": null, - "fetchSpec": "~3.0.2" - }, - "_requiredBy": [ - "/chokidar" + "name": "braces", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "version": "3.0.2", + "homepage": "https://github.com/micromatch/braces", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://twitter.com/doowb)", + "Elan Shanker (https://github.com/es128)", + "Eugene Sharygin (https://github.com/eush77)", + "hemanth.hm (http://h3manth.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "_shasum": "3454e1a462ee8d599e236df336cd9ea4f8afe107", - "_spec": "braces@~3.0.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/chokidar", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - { - "name": "Eugene Sharygin", - "url": "https://github.com/eush77" - }, - { - "name": "hemanth.hm", - "url": "http://h3manth.com" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js", + "lib" ], + "main": "index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "mocha", + "benchmark": "node benchmark" + }, "dependencies": { "fill-range": "^7.0.1" }, - "deprecated": false, - "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", "devDependencies": { "ansi-colors": "^3.2.4", "bash-path": "^2.0.1", "gulp-format-md": "^2.0.0", "mocha": "^6.1.1" }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "lib" - ], - "homepage": "https://github.com/micromatch/braces", "keywords": [ "alpha", "alphabetical", @@ -95,17 +61,6 @@ "ranges", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "braces", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/braces.git" - }, - "scripts": { - "benchmark": "node benchmark", - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -118,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" + } } diff --git a/node_modules/bson/package.json b/node_modules/bson/package.json index 5061bf9..7f57cbe 100644 --- a/node_modules/bson/package.json +++ b/node_modules/bson/package.json @@ -1,46 +1,30 @@ { - "_from": "bson@^5.3.0", - "_id": "bson@5.5.1", - "_inBundle": false, - "_integrity": "sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==", - "_location": "/bson", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "bson@^5.3.0", - "name": "bson", - "escapedName": "bson", - "rawSpec": "^5.3.0", - "saveSpec": null, - "fetchSpec": "^5.3.0" - }, - "_requiredBy": [ - "/mongodb", - "/mongoose" + "name": "bson", + "description": "A bson parser for node.js and the browser", + "keywords": [ + "mongodb", + "bson", + "parser" ], - "_resolved": "https://registry.npmjs.org/bson/-/bson-5.5.1.tgz", - "_shasum": "f5849d405711a7f23acdda9a442375df858e6833", - "_spec": "bson@^5.3.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongodb", + "files": [ + "lib", + "src", + "bson.d.ts", + "etc/prepare.js", + "vendor" + ], + "types": "bson.d.ts", + "version": "5.5.1", "author": { "name": "The MongoDB NodeJS Team", "email": "dbx-node@mongodb.com" }, + "license": "Apache-2.0", + "contributors": [], + "repository": "mongodb/js-bson", "bugs": { "url": "https://jira.mongodb.org/projects/NODE/issues/" }, - "bundleDependencies": false, - "compass:exports": { - "import": "./lib/bson.cjs", - "require": "./lib/bson.cjs" - }, - "config": { - "native": false - }, - "contributors": [], - "deprecated": false, - "description": "A bson parser for node.js and the browser", "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.2", "@microsoft/api-extractor": "^7.35.1", @@ -79,9 +63,20 @@ "uuid": "^9.0.0", "v8-profiler-next": "^1.9.0" }, - "engines": { - "node": ">=14.20.1" + "tsd": { + "directory": "test/types", + "compilerOptions": { + "strict": true, + "target": "esnext", + "module": "commonjs", + "moduleResolution": "node" + } }, + "config": { + "native": false + }, + "main": "./lib/bson.cjs", + "module": "./lib/bson.mjs", "exports": { "import": { "types": "./bson.d.ts", @@ -94,53 +89,28 @@ "react-native": "./lib/bson.rn.cjs", "browser": "./lib/bson.mjs" }, - "files": [ - "lib", - "src", - "bson.d.ts", - "etc/prepare.js", - "vendor" - ], - "homepage": "https://github.com/mongodb/js-bson#readme", - "keywords": [ - "mongodb", - "bson", - "parser" - ], - "license": "Apache-2.0", - "main": "./lib/bson.cjs", - "module": "./lib/bson.mjs", - "name": "bson", - "repository": { - "type": "git", - "url": "git+https://github.com/mongodb/js-bson.git" + "compass:exports": { + "import": "./lib/bson.cjs", + "require": "./lib/bson.cjs" + }, + "engines": { + "node": ">=14.20.1" }, "scripts": { - "build": "npm run build:dts && npm run build:bundle", - "build:bundle": "rollup -c rollup.config.mjs", - "build:dts": "npm run build:ts && api-extractor run --typescript-compiler-folder node_modules/typescript --local && node etc/clean_definition_files.cjs", - "build:ts": "node ./node_modules/typescript/bin/tsc", - "check:coverage": "nyc --check-coverage npm run check:node", - "check:lint": "eslint -v && eslint --ext '.js,.ts' --max-warnings=0 src test && npm run build:dts && npm run check:tsd", + "pretest": "npm run build", + "test": "npm run check:node && npm run check:web && npm run check:web-no-bigint", "check:node": "WEB=false mocha test/node", "check:tsd": "npm run build:dts && tsd", "check:web": "WEB=true mocha test/node", "check:web-no-bigint": "WEB=true NO_BIGINT=true mocha test/node", + "build:ts": "node ./node_modules/typescript/bin/tsc", + "build:dts": "npm run build:ts && api-extractor run --typescript-compiler-folder node_modules/typescript --local && node etc/clean_definition_files.cjs", + "build:bundle": "rollup -c rollup.config.mjs", + "build": "npm run build:dts && npm run build:bundle", + "check:lint": "eslint -v && eslint --ext '.js,.ts' --max-warnings=0 src test && npm run build:dts && npm run check:tsd", "format": "eslint --ext '.js,.ts' src test --fix", + "check:coverage": "nyc --check-coverage npm run check:node", "prepare": "node etc/prepare.js", - "pretest": "npm run build", - "release": "standard-version -i HISTORY.md", - "test": "npm run check:node && npm run check:web && npm run check:web-no-bigint" - }, - "tsd": { - "directory": "test/types", - "compilerOptions": { - "strict": true, - "target": "esnext", - "module": "commonjs", - "moduleResolution": "node" - } - }, - "types": "bson.d.ts", - "version": "5.5.1" + "release": "standard-version -i HISTORY.md" + } } diff --git a/node_modules/buffer-equal-constant-time/package.json b/node_modules/buffer-equal-constant-time/package.json index d2d4bb6..17c7de2 100644 --- a/node_modules/buffer-equal-constant-time/package.json +++ b/node_modules/buffer-equal-constant-time/package.json @@ -1,55 +1,21 @@ { - "_from": "buffer-equal-constant-time@1.0.1", - "_id": "buffer-equal-constant-time@1.0.1", - "_inBundle": false, - "_integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", - "_location": "/buffer-equal-constant-time", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "buffer-equal-constant-time@1.0.1", - "name": "buffer-equal-constant-time", - "escapedName": "buffer-equal-constant-time", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/jwa" - ], - "_resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "_shasum": "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819", - "_spec": "buffer-equal-constant-time@1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/jwa", - "author": { - "name": "GoInstant Inc., a salesforce.com company" - }, - "bugs": { - "url": "https://github.com/goinstant/buffer-equal-constant-time/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "buffer-equal-constant-time", + "version": "1.0.1", "description": "Constant-time comparison of Buffers", - "devDependencies": { - "mocha": "~1.15.1" + "main": "index.js", + "scripts": { + "test": "mocha test.js" }, - "homepage": "https://github.com/goinstant/buffer-equal-constant-time#readme", + "repository": "git@github.com:goinstant/buffer-equal-constant-time.git", "keywords": [ "buffer", "equal", "constant-time", "crypto" ], + "author": "GoInstant Inc., a salesforce.com company", "license": "BSD-3-Clause", - "main": "index.js", - "name": "buffer-equal-constant-time", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/goinstant/buffer-equal-constant-time.git" - }, - "scripts": { - "test": "mocha test.js" - }, - "version": "1.0.1" + "devDependencies": { + "mocha": "~1.15.1" + } } diff --git a/node_modules/buffer-from/package.json b/node_modules/buffer-from/package.json index 80f1c9e..6ac5327 100644 --- a/node_modules/buffer-from/package.json +++ b/node_modules/buffer-from/package.json @@ -1,52 +1,19 @@ { - "_from": "buffer-from@^1.0.0", - "_id": "buffer-from@1.1.2", - "_inBundle": false, - "_integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "_location": "/buffer-from", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "buffer-from@^1.0.0", - "name": "buffer-from", - "escapedName": "buffer-from", - "rawSpec": "^1.0.0", - "saveSpec": null, - "fetchSpec": "^1.0.0" - }, - "_requiredBy": [ - "/concat-stream" - ], - "_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "_shasum": "2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5", - "_spec": "buffer-from@^1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/concat-stream", - "bugs": { - "url": "https://github.com/LinusU/buffer-from/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.", - "devDependencies": { - "standard": "^12.0.1" - }, + "name": "buffer-from", + "version": "1.1.2", + "license": "MIT", + "repository": "LinusU/buffer-from", "files": [ "index.js" ], - "homepage": "https://github.com/LinusU/buffer-from#readme", - "keywords": [ - "buffer", - "buffer from" - ], - "license": "MIT", - "name": "buffer-from", - "repository": { - "type": "git", - "url": "git+https://github.com/LinusU/buffer-from.git" - }, "scripts": { "test": "standard && node test" }, - "version": "1.1.2" + "devDependencies": { + "standard": "^12.0.1" + }, + "keywords": [ + "buffer", + "buffer from" + ] } diff --git a/node_modules/busboy/package.json b/node_modules/busboy/package.json index 7ab6118..ac2577f 100644 --- a/node_modules/busboy/package.json +++ b/node_modules/busboy/package.json @@ -1,71 +1,22 @@ -{ - "_from": "busboy@1.6.0", - "_id": "busboy@1.6.0", - "_inBundle": false, - "_integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "_location": "/busboy", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "busboy@1.6.0", - "name": "busboy", - "escapedName": "busboy", - "rawSpec": "1.6.0", - "saveSpec": null, - "fetchSpec": "1.6.0" - }, - "_requiredBy": [ - "/", - "/multer" - ], - "_resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "_shasum": "966ea36a9502e43cdb9146962523b92f531f6893", - "_spec": "busboy@1.6.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Brian White", - "email": "mscdex@mscdex.net" - }, - "bugs": { - "url": "https://github.com/mscdex/busboy/issues" - }, - "bundleDependencies": false, +{ "name": "busboy", + "version": "1.6.0", + "author": "Brian White ", + "description": "A streaming parser for HTML form data for node.js", + "main": "./lib/index.js", "dependencies": { "streamsearch": "^1.1.0" }, - "deprecated": false, - "description": "A streaming parser for HTML form data for node.js", "devDependencies": { "@mscdex/eslint-config": "^1.1.0", "eslint": "^7.32.0" }, - "engines": { - "node": ">=10.16.0" - }, - "homepage": "https://github.com/mscdex/busboy#readme", - "keywords": [ - "uploads", - "forms", - "multipart", - "form-data" - ], - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/mscdex/busboy/raw/master/LICENSE" - } - ], - "main": "./lib/index.js", - "name": "busboy", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/mscdex/busboy.git" - }, "scripts": { + "test": "node test/test.js", "lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js lib test bench", - "lint:fix": "npm run lint -- --fix", - "test": "node test/test.js" + "lint:fix": "npm run lint -- --fix" }, - "version": "1.6.0" + "engines": { "node": ">=10.16.0" }, + "keywords": [ "uploads", "forms", "multipart", "form-data" ], + "licenses": [ { "type": "MIT", "url": "http://github.com/mscdex/busboy/raw/master/LICENSE" } ], + "repository": { "type": "git", "url": "http://github.com/mscdex/busboy.git" } } diff --git a/node_modules/bytes/package.json b/node_modules/bytes/package.json index 1dc57ef..f2b6a8b 100644 --- a/node_modules/bytes/package.json +++ b/node_modules/bytes/package.json @@ -1,67 +1,13 @@ { - "_from": "bytes@3.1.2", - "_id": "bytes@3.1.2", - "_inBundle": false, - "_integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "_location": "/bytes", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "bytes@3.1.2", - "name": "bytes", - "escapedName": "bytes", - "rawSpec": "3.1.2", - "saveSpec": null, - "fetchSpec": "3.1.2" - }, - "_requiredBy": [ - "/body-parser", - "/express/body-parser", - "/express/raw-body", - "/raw-body" - ], - "_resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "_shasum": "8b0beeb98605adf1b128fa4386403c009e0221a5", - "_spec": "bytes@3.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca", - "url": "http://tjholowaychuk.com" - }, - "bugs": { - "url": "https://github.com/visionmedia/bytes.js/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jed Watson", - "email": "jed.watson@me.com" - }, - { - "name": "Théo FIDRY", - "email": "theo.fidry@gmail.com" - } - ], - "deprecated": false, + "name": "bytes", "description": "Utility to parse a string bytes to bytes and vice-versa", - "devDependencies": { - "eslint": "7.32.0", - "eslint-plugin-markdown": "2.2.1", - "mocha": "9.2.0", - "nyc": "15.1.0" - }, - "engines": { - "node": ">= 0.8" - }, - "files": [ - "History.md", - "LICENSE", - "Readme.md", - "index.js" + "version": "3.1.2", + "author": "TJ Holowaychuk (http://tjholowaychuk.com)", + "contributors": [ + "Jed Watson ", + "Théo FIDRY " ], - "homepage": "https://github.com/visionmedia/bytes.js#readme", + "license": "MIT", "keywords": [ "byte", "bytes", @@ -71,17 +17,26 @@ "convert", "converter" ], - "license": "MIT", - "name": "bytes", - "repository": { - "type": "git", - "url": "git+https://github.com/visionmedia/bytes.js.git" + "repository": "visionmedia/bytes.js", + "devDependencies": { + "eslint": "7.32.0", + "eslint-plugin-markdown": "2.2.1", + "mocha": "9.2.0", + "nyc": "15.1.0" + }, + "files": [ + "History.md", + "LICENSE", + "Readme.md", + "index.js" + ], + "engines": { + "node": ">= 0.8" }, "scripts": { "lint": "eslint .", "test": "mocha --check-leaks --reporter spec", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "3.1.2" + } } diff --git a/node_modules/call-bind/package.json b/node_modules/call-bind/package.json index 89d2f94..5ba88ff 100644 --- a/node_modules/call-bind/package.json +++ b/node_modules/call-bind/package.json @@ -1,123 +1,95 @@ { - "_from": "call-bind@^1.0.7", - "_id": "call-bind@1.0.7", - "_inBundle": false, - "_integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "_location": "/call-bind", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "call-bind@^1.0.7", - "name": "call-bind", - "escapedName": "call-bind", - "rawSpec": "^1.0.7", - "saveSpec": null, - "fetchSpec": "^1.0.7" - }, - "_requiredBy": [ - "/side-channel" - ], - "_resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "_shasum": "06016599c40c56498c18769d2730be242b6fa3b9", - "_spec": "call-bind@^1.0.7", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/side-channel", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/call-bind/issues" - }, - "bundleDependencies": false, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "deprecated": false, - "description": "Robustly `.call.bind()` a function", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "es-value-fixtures": "^1.4.2", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-strict-mode": "^1.0.1", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "object-inspect": "^1.13.1", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./callBound": "./callBound.js", - "./package.json": "./package.json" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/ljharb/call-bind#readme", - "keywords": [ - "javascript", - "ecmascript", - "es", - "js", - "callbind", - "callbound", - "call", - "bind", - "bound", - "call-bind", - "call-bound", - "function", - "es-abstract" - ], - "license": "MIT", - "main": "index.js", - "name": "call-bind", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/call-bind.git" - }, - "scripts": { - "lint": "eslint --ext=.js,.mjs .", - "postlint": "evalmd README.md", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prepack": "npmignore --auto --commentLines=auto", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "testling": { - "files": "test/index.js" - }, - "version": "1.0.7" + "name": "call-bind", + "version": "1.0.7", + "description": "Robustly `.call.bind()` a function", + "main": "index.js", + "exports": { + ".": "./index.js", + "./callBound": "./callBound.js", + "./package.json": "./package.json" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=auto", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "lint": "eslint --ext=.js,.mjs .", + "postlint": "evalmd README.md", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/call-bind.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "es", + "js", + "callbind", + "callbound", + "call", + "bind", + "bound", + "call-bind", + "call-bound", + "function", + "es-abstract" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/call-bind/issues" + }, + "homepage": "https://github.com/ljharb/call-bind#readme", + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "es-value-fixtures": "^1.4.2", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-strict-mode": "^1.0.1", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4" + }, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "testling": { + "files": "test/index.js" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } } diff --git a/node_modules/chokidar/package.json b/node_modules/chokidar/package.json index c3ec668..e8f8b3d 100644 --- a/node_modules/chokidar/package.json +++ b/node_modules/chokidar/package.json @@ -1,56 +1,30 @@ { - "_from": "chokidar@^3.5.2", - "_id": "chokidar@3.6.0", - "_inBundle": false, - "_integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "_location": "/chokidar", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "chokidar@^3.5.2", - "name": "chokidar", - "escapedName": "chokidar", - "rawSpec": "^3.5.2", - "saveSpec": null, - "fetchSpec": "^3.5.2" - }, - "_requiredBy": [ - "/nodemon" - ], - "_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "_shasum": "197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b", - "_spec": "chokidar@^3.5.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Paul Miller", - "url": "https://paulmillr.com" - }, - "bugs": { - "url": "https://github.com/paulmillr/chokidar/issues" - }, - "bundleDependencies": false, + "name": "chokidar", + "description": "Minimal and efficient cross-platform file watching library", + "version": "3.6.0", + "homepage": "https://github.com/paulmillr/chokidar", + "author": "Paul Miller (https://paulmillr.com)", "contributors": [ - { - "name": "Paul Miller", - "url": "https://paulmillr.com" - }, - { - "name": "Elan Shanker" - } + "Paul Miller (https://paulmillr.com)", + "Elan Shanker" ], + "engines": { + "node": ">= 8.10.0" + }, + "main": "index.js", + "types": "./types/index.d.ts", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", - "fsevents": "~2.3.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, - "deprecated": false, - "description": "Minimal and efficient cross-platform file watching library", + "optionalDependencies": { + "fsevents": "~2.3.2" + }, "devDependencies": { "@types/node": "^14", "chai": "^4.3", @@ -63,16 +37,26 @@ "typescript": "^4.4.3", "upath": "^1.2.0" }, - "engines": { - "node": ">= 8.10.0" - }, "files": [ "index.js", "lib/*.js", "types/index.d.ts" ], - "funding": "https://paulmillr.com/funding/", - "homepage": "https://github.com/paulmillr/chokidar", + "repository": { + "type": "git", + "url": "git+https://github.com/paulmillr/chokidar.git" + }, + "bugs": { + "url": "https://github.com/paulmillr/chokidar/issues" + }, + "license": "MIT", + "scripts": { + "dtslint": "dtslint types", + "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", + "build": "npm ls", + "mocha": "mocha --exit --timeout 90000", + "test": "npm run lint && npm run mocha" + }, "keywords": [ "fs", "watch", @@ -82,23 +66,5 @@ "file", "fsevents" ], - "license": "MIT", - "main": "index.js", - "name": "chokidar", - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/paulmillr/chokidar.git" - }, - "scripts": { - "build": "npm ls", - "dtslint": "dtslint types", - "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --exit --timeout 90000", - "test": "npm run lint && npm run mocha" - }, - "types": "./types/index.d.ts", - "version": "3.6.0" + "funding": "https://paulmillr.com/funding/" } diff --git a/node_modules/combined-stream/package.json b/node_modules/combined-stream/package.json index 1c9c6ab..6982b6d 100644 --- a/node_modules/combined-stream/package.json +++ b/node_modules/combined-stream/package.json @@ -1,57 +1,25 @@ { - "_from": "combined-stream@^1.0.8", - "_id": "combined-stream@1.0.8", - "_inBundle": false, - "_integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "_location": "/combined-stream", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "combined-stream@^1.0.8", - "name": "combined-stream", - "escapedName": "combined-stream", - "rawSpec": "^1.0.8", - "saveSpec": null, - "fetchSpec": "^1.0.8" - }, - "_requiredBy": [ - "/form-data" - ], - "_resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "_shasum": "c3d45a8b34fd730631a110a8a2520682b31d5a7f", - "_spec": "combined-stream@^1.0.8", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/form-data", - "author": { - "name": "Felix Geisendörfer", - "email": "felix@debuggable.com", - "url": "http://debuggable.com/" - }, - "bugs": { - "url": "https://github.com/felixge/node-combined-stream/issues" - }, - "bundleDependencies": false, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "deprecated": false, - "description": "A stream that emits multiple other streams one after another.", - "devDependencies": { - "far": "~0.0.7" - }, - "engines": { - "node": ">= 0.8" - }, - "homepage": "https://github.com/felixge/node-combined-stream", - "license": "MIT", - "main": "./lib/combined_stream", + "author": "Felix Geisendörfer (http://debuggable.com/)", "name": "combined-stream", + "description": "A stream that emits multiple other streams one after another.", + "version": "1.0.8", + "homepage": "https://github.com/felixge/node-combined-stream", "repository": { "type": "git", "url": "git://github.com/felixge/node-combined-stream.git" }, + "main": "./lib/combined_stream", "scripts": { "test": "node test/run.js" }, - "version": "1.0.8" + "engines": { + "node": ">= 0.8" + }, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "devDependencies": { + "far": "~0.0.7" + }, + "license": "MIT" } diff --git a/node_modules/concat-map/package.json b/node_modules/concat-map/package.json index 806a9d3..d3640e6 100644 --- a/node_modules/concat-map/package.json +++ b/node_modules/concat-map/package.json @@ -1,88 +1,43 @@ { - "_from": "concat-map@0.0.1", - "_id": "concat-map@0.0.1", - "_inBundle": false, - "_integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "_location": "/concat-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "concat-map@0.0.1", - "name": "concat-map", - "escapedName": "concat-map", - "rawSpec": "0.0.1", - "saveSpec": null, - "fetchSpec": "0.0.1" - }, - "_requiredBy": [ - "/brace-expansion" - ], - "_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "_shasum": "d8a96bd77fd68df7793a73036a3ba0d5405d477b", - "_spec": "concat-map@0.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/brace-expansion", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/substack/node-concat-map/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "concatenative mapdashery", - "devDependencies": { - "tape": "~2.4.0" - }, - "directories": { - "example": "example", - "test": "test" - }, - "homepage": "https://github.com/substack/node-concat-map#readme", - "keywords": [ - "concat", - "concatMap", - "map", - "functional", - "higher-order" - ], - "license": "MIT", - "main": "index.js", - "name": "concat-map", - "repository": { - "type": "git", - "url": "git://github.com/substack/node-concat-map.git" - }, - "scripts": { - "test": "tape test/*.js" - }, - "testling": { - "files": "test/*.js", - "browsers": { - "ie": [ - 6, - 7, - 8, - 9 - ], - "ff": [ - 3.5, - 10, - 15 - ], - "chrome": [ - 10, - 22 - ], - "safari": [ - 5.1 - ], - "opera": [ - 12 - ] + "name" : "concat-map", + "description" : "concatenative mapdashery", + "version" : "0.0.1", + "repository" : { + "type" : "git", + "url" : "git://github.com/substack/node-concat-map.git" + }, + "main" : "index.js", + "keywords" : [ + "concat", + "concatMap", + "map", + "functional", + "higher-order" + ], + "directories" : { + "example" : "example", + "test" : "test" + }, + "scripts" : { + "test" : "tape test/*.js" + }, + "devDependencies" : { + "tape" : "~2.4.0" + }, + "license" : "MIT", + "author" : { + "name" : "James Halliday", + "email" : "mail@substack.net", + "url" : "http://substack.net" + }, + "testling" : { + "files" : "test/*.js", + "browsers" : { + "ie" : [ 6, 7, 8, 9 ], + "ff" : [ 3.5, 10, 15.0 ], + "chrome" : [ 10, 22 ], + "safari" : [ 5.1 ], + "opera" : [ 12 ] + } } - }, - "version": "0.0.1" } diff --git a/node_modules/concat-stream/package.json b/node_modules/concat-stream/package.json index 7cefa7e..f709022 100644 --- a/node_modules/concat-stream/package.json +++ b/node_modules/concat-stream/package.json @@ -1,69 +1,41 @@ { - "_from": "concat-stream@^1.5.2", - "_id": "concat-stream@1.6.2", - "_inBundle": false, - "_integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "_location": "/concat-stream", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "concat-stream@^1.5.2", - "name": "concat-stream", - "escapedName": "concat-stream", - "rawSpec": "^1.5.2", - "saveSpec": null, - "fetchSpec": "^1.5.2" - }, - "_requiredBy": [ - "/multer" - ], - "_resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "_shasum": "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34", - "_spec": "concat-stream@^1.5.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/multer", - "author": { - "name": "Max Ogden", - "email": "max@maxogden.com" - }, - "bugs": { - "url": "http://github.com/maxogden/concat-stream/issues" - }, - "bundleDependencies": false, - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - }, - "deprecated": false, - "description": "writable stream that concatenates strings or binary data and calls a callback with the result", - "devDependencies": { - "tape": "^4.6.3" - }, - "engines": [ - "node >= 0.8" - ], - "files": [ - "index.js" - ], - "homepage": "https://github.com/maxogden/concat-stream#readme", - "license": "MIT", - "main": "index.js", "name": "concat-stream", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/maxogden/concat-stream.git" - }, - "scripts": { - "test": "tape test/*.js test/server/*.js" - }, + "version": "1.6.2", + "description": "writable stream that concatenates strings or binary data and calls a callback with the result", "tags": [ "stream", "simple", "util", "utility" ], + "author": "Max Ogden ", + "repository": { + "type": "git", + "url": "http://github.com/maxogden/concat-stream.git" + }, + "bugs": { + "url": "http://github.com/maxogden/concat-stream/issues" + }, + "engines": [ + "node >= 0.8" + ], + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "tape test/*.js test/server/*.js" + }, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "devDependencies": { + "tape": "^4.6.3" + }, "testling": { "files": "test/*.js", "browsers": [ @@ -79,6 +51,5 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "1.6.2" + } } diff --git a/node_modules/content-disposition/package.json b/node_modules/content-disposition/package.json index 7a542f8..43c70ce 100644 --- a/node_modules/content-disposition/package.json +++ b/node_modules/content-disposition/package.json @@ -1,40 +1,19 @@ { - "_from": "content-disposition@0.5.4", - "_id": "content-disposition@0.5.4", - "_inBundle": false, - "_integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "_location": "/content-disposition", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "content-disposition@0.5.4", - "name": "content-disposition", - "escapedName": "content-disposition", - "rawSpec": "0.5.4", - "saveSpec": null, - "fetchSpec": "0.5.4" - }, - "_requiredBy": [ - "/express" + "name": "content-disposition", + "description": "Create and parse Content-Disposition header", + "version": "0.5.4", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "content-disposition", + "http", + "rfc6266", + "res" ], - "_resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "_shasum": "8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe", - "_spec": "content-disposition@0.5.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/jshttp/content-disposition/issues" - }, - "bundleDependencies": false, + "repository": "jshttp/content-disposition", "dependencies": { "safe-buffer": "5.2.1" }, - "deprecated": false, - "description": "Create and parse Content-Disposition header", "devDependencies": { "deep-equal": "1.0.1", "eslint": "7.32.0", @@ -47,33 +26,19 @@ "istanbul": "0.4.5", "mocha": "9.1.3" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], - "homepage": "https://github.com/jshttp/content-disposition#readme", - "keywords": [ - "content-disposition", - "http", - "rfc6266", - "res" - ], - "license": "MIT", - "name": "content-disposition", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/content-disposition.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec --bail --check-leaks test/", "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" - }, - "version": "0.5.4" + } } diff --git a/node_modules/content-type/package.json b/node_modules/content-type/package.json index c032da8..9db19f6 100644 --- a/node_modules/content-type/package.json +++ b/node_modules/content-type/package.json @@ -1,39 +1,17 @@ { - "_from": "content-type@~1.0.5", - "_id": "content-type@1.0.5", - "_inBundle": false, - "_integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "_location": "/content-type", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "content-type@~1.0.5", - "name": "content-type", - "escapedName": "content-type", - "rawSpec": "~1.0.5", - "saveSpec": null, - "fetchSpec": "~1.0.5" - }, - "_requiredBy": [ - "/body-parser", - "/express", - "/express/body-parser" - ], - "_resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "_shasum": "8b773162656d1d1086784c8f23a54ce6d73d7918", - "_spec": "content-type@~1.0.5", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/jshttp/content-type/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "content-type", "description": "Create and parse HTTP Content-Type header", + "version": "1.0.5", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "content-type", + "http", + "req", + "res", + "rfc7231" + ], + "repository": "jshttp/content-type", "devDependencies": { "deep-equal": "1.0.1", "eslint": "8.32.0", @@ -45,28 +23,14 @@ "mocha": "10.2.0", "nyc": "15.1.0" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], - "homepage": "https://github.com/jshttp/content-type#readme", - "keywords": [ - "content-type", - "http", - "req", - "res", - "rfc7231" - ], - "license": "MIT", - "name": "content-type", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/content-type.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "lint": "eslint .", @@ -74,6 +38,5 @@ "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test", "version": "node scripts/version-history.js && git add HISTORY.md" - }, - "version": "1.0.5" + } } diff --git a/node_modules/cookie-signature/package.json b/node_modules/cookie-signature/package.json index 47283d1..29c4498 100644 --- a/node_modules/cookie-signature/package.json +++ b/node_modules/cookie-signature/package.json @@ -1,57 +1,18 @@ { - "_from": "cookie-signature@1.0.6", - "_id": "cookie-signature@1.0.6", - "_inBundle": false, - "_integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "_location": "/cookie-signature", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cookie-signature@1.0.6", - "name": "cookie-signature", - "escapedName": "cookie-signature", - "rawSpec": "1.0.6", - "saveSpec": null, - "fetchSpec": "1.0.6" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "_shasum": "e303a882b342cc3ee8ca513a79999734dab3ae2c", - "_spec": "cookie-signature@1.0.6", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@learnboost.com" - }, - "bugs": { - "url": "https://github.com/visionmedia/node-cookie-signature/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "cookie-signature", + "version": "1.0.6", "description": "Sign and unsign cookies", + "keywords": ["cookie", "sign", "unsign"], + "author": "TJ Holowaychuk ", + "license": "MIT", + "repository": { "type": "git", "url": "https://github.com/visionmedia/node-cookie-signature.git"}, + "dependencies": {}, "devDependencies": { "mocha": "*", "should": "*" }, - "homepage": "https://github.com/visionmedia/node-cookie-signature#readme", - "keywords": [ - "cookie", - "sign", - "unsign" - ], - "license": "MIT", - "main": "index", - "name": "cookie-signature", - "repository": { - "type": "git", - "url": "git+https://github.com/visionmedia/node-cookie-signature.git" - }, "scripts": { "test": "mocha --require should --reporter spec" }, - "version": "1.0.6" + "main": "index" } diff --git a/node_modules/cookie/package.json b/node_modules/cookie/package.json index 71fe7c5..ed5606a 100644 --- a/node_modules/cookie/package.json +++ b/node_modules/cookie/package.json @@ -1,43 +1,17 @@ { - "_from": "cookie@0.5.0", - "_id": "cookie@0.5.0", - "_inBundle": false, - "_integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "_location": "/cookie", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cookie@0.5.0", - "name": "cookie", - "escapedName": "cookie", - "rawSpec": "0.5.0", - "saveSpec": null, - "fetchSpec": "0.5.0" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "_shasum": "d1f5d71adec6558c58f389987c366aa47e994f8b", - "_spec": "cookie@0.5.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "Roman Shtylman", - "email": "shtylman@gmail.com" - }, - "bugs": { - "url": "https://github.com/jshttp/cookie/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - } - ], - "deprecated": false, + "name": "cookie", "description": "HTTP server cookie parsing and serialization", + "version": "0.5.0", + "author": "Roman Shtylman ", + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "keywords": [ + "cookie", + "cookies" + ], + "repository": "jshttp/cookie", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", @@ -48,9 +22,6 @@ "safe-buffer": "5.2.1", "top-sites": "1.1.97" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "HISTORY.md", "LICENSE", @@ -58,16 +29,8 @@ "SECURITY.md", "index.js" ], - "homepage": "https://github.com/jshttp/cookie#readme", - "keywords": [ - "cookie", - "cookies" - ], - "license": "MIT", - "name": "cookie", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/cookie.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "bench": "node benchmark/index.js", @@ -77,6 +40,5 @@ "test-cov": "nyc --reporter=html --reporter=text npm test", "update-bench": "node scripts/update-benchmark.js", "version": "node scripts/version-history.js && git add HISTORY.md" - }, - "version": "0.5.0" + } } diff --git a/node_modules/core-util-is/package.json b/node_modules/core-util-is/package.json index c0e063f..b0c51f5 100644 --- a/node_modules/core-util-is/package.json +++ b/node_modules/core-util-is/package.json @@ -1,45 +1,15 @@ { - "_from": "core-util-is@~1.0.0", - "_id": "core-util-is@1.0.3", - "_inBundle": false, - "_integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "_location": "/core-util-is", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "core-util-is@~1.0.0", - "name": "core-util-is", - "escapedName": "core-util-is", - "rawSpec": "~1.0.0", - "saveSpec": null, - "fetchSpec": "~1.0.0" - }, - "_requiredBy": [ - "/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "_shasum": "a6042d3634c2b27e9328f837b965fac83808db85", - "_spec": "core-util-is@~1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/readable-stream", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/core-util-is/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "core-util-is", + "version": "1.0.3", "description": "The `util.is*` functions introduced in Node v0.12.", - "devDependencies": { - "tap": "^15.0.9" - }, + "main": "lib/util.js", "files": [ "lib" ], - "homepage": "https://github.com/isaacs/core-util-is#readme", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/core-util-is" + }, "keywords": [ "util", "isBuffer", @@ -51,18 +21,18 @@ "isThat", "polyfill" ], + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "license": "MIT", - "main": "lib/util.js", - "name": "core-util-is", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/core-util-is.git" + "bugs": { + "url": "https://github.com/isaacs/core-util-is/issues" }, "scripts": { - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", + "test": "tap test.js", "preversion": "npm test", - "test": "tap test.js" + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" }, - "version": "1.0.3" + "devDependencies": { + "tap": "^15.0.9" + } } diff --git a/node_modules/cors/package.json b/node_modules/cors/package.json index e2189af..ff37d98 100644 --- a/node_modules/cors/package.json +++ b/node_modules/cors/package.json @@ -1,42 +1,21 @@ { - "_from": "cors@2.8.5", - "_id": "cors@2.8.5", - "_inBundle": false, - "_integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "_location": "/cors", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cors@2.8.5", - "name": "cors", - "escapedName": "cors", - "rawSpec": "2.8.5", - "saveSpec": null, - "fetchSpec": "2.8.5" - }, - "_requiredBy": [ - "/" + "name": "cors", + "description": "Node.js CORS middleware", + "version": "2.8.5", + "author": "Troy Goode (https://github.com/troygoode/)", + "license": "MIT", + "keywords": [ + "cors", + "express", + "connect", + "middleware" ], - "_resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "_shasum": "eac11da51592dd86b9f06f6e7ac293b3df875d29", - "_spec": "cors@2.8.5", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Troy Goode", - "email": "troygoode@gmail.com", - "url": "https://github.com/troygoode/" - }, - "bugs": { - "url": "https://github.com/expressjs/cors/issues" - }, - "bundleDependencies": false, + "repository": "expressjs/cors", + "main": "./lib/index.js", "dependencies": { "object-assign": "^4", "vary": "^1" }, - "deprecated": false, - "description": "Node.js CORS middleware", "devDependencies": { "after": "0.8.2", "eslint": "2.13.1", @@ -45,9 +24,6 @@ "nyc": "13.1.0", "supertest": "3.3.0" }, - "engines": { - "node": ">= 0.10" - }, "files": [ "lib/index.js", "CONTRIBUTING.md", @@ -55,23 +31,11 @@ "LICENSE", "README.md" ], - "homepage": "https://github.com/expressjs/cors#readme", - "keywords": [ - "cors", - "express", - "connect", - "middleware" - ], - "license": "MIT", - "main": "./lib/index.js", - "name": "cors", - "repository": { - "type": "git", - "url": "git+https://github.com/expressjs/cors.git" + "engines": { + "node": ">= 0.10" }, "scripts": { - "lint": "eslint lib test", - "test": "npm run lint && nyc --reporter=html --reporter=text mocha --require test/support/env" - }, - "version": "2.8.5" + "test": "npm run lint && nyc --reporter=html --reporter=text mocha --require test/support/env", + "lint": "eslint lib test" + } } diff --git a/node_modules/debug/package.json b/node_modules/debug/package.json index 1a08f9d..dc787ba 100644 --- a/node_modules/debug/package.json +++ b/node_modules/debug/package.json @@ -1,62 +1,25 @@ { - "_from": "debug@2.6.9", - "_id": "debug@2.6.9", - "_inBundle": false, - "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "_location": "/debug", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "debug@2.6.9", - "name": "debug", - "escapedName": "debug", - "rawSpec": "2.6.9", - "saveSpec": null, - "fetchSpec": "2.6.9" + "name": "debug", + "version": "2.6.9", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" }, - "_requiredBy": [ - "/body-parser", - "/express", - "/express/body-parser", - "/finalhandler", - "/send" + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" ], - "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "_shasum": "5d128515df134ff327e90a4c93f4e077a536341f", - "_spec": "debug@2.6.9", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" - }, - "bundleDependencies": false, - "component": { - "scripts": { - "debug/index.js": "browser.js", - "debug/debug.js": "debug.js" - } - }, + "author": "TJ Holowaychuk ", "contributors": [ - { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io" - }, - { - "name": "Andrew Rhyne", - "email": "rhyneandrew@gmail.com" - } + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " ], + "license": "MIT", "dependencies": { "ms": "2.0.0" }, - "deprecated": false, - "description": "small debugging utility", "devDependencies": { "browserify": "9.0.3", "chai": "^3.5.0", @@ -75,18 +38,12 @@ "sinon": "^1.17.6", "sinon-chai": "^2.8.0" }, - "homepage": "https://github.com/visionmedia/debug#readme", - "keywords": [ - "debug", - "log", - "debugger" - ], - "license": "MIT", "main": "./src/index.js", - "name": "debug", - "repository": { - "type": "git", - "url": "git://github.com/visionmedia/debug.git" - }, - "version": "2.6.9" + "browser": "./src/browser.js", + "component": { + "scripts": { + "debug/index.js": "browser.js", + "debug/debug.js": "debug.js" + } + } } diff --git a/node_modules/define-data-property/package.json b/node_modules/define-data-property/package.json index 935df38..eec4097 100644 --- a/node_modules/define-data-property/package.json +++ b/node_modules/define-data-property/package.json @@ -1,134 +1,106 @@ { - "_from": "define-data-property@^1.1.2", - "_id": "define-data-property@1.1.4", - "_inBundle": false, - "_integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "_location": "/define-data-property", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "define-data-property@^1.1.2", - "name": "define-data-property", - "escapedName": "define-data-property", - "rawSpec": "^1.1.2", - "saveSpec": null, - "fetchSpec": "^1.1.2" - }, - "_requiredBy": [ - "/set-function-length" - ], - "_resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "_shasum": "894dc141bb7d3060ae4366f6a0107e68fbe48c5e", - "_spec": "define-data-property@^1.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/set-function-length", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/define-data-property/issues" - }, - "bundleDependencies": false, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "deprecated": false, - "description": "Define a data property on an object. Will fall back to assignment in an engine without descriptors.", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "@types/call-bind": "^1.0.5", - "@types/define-properties": "^1.1.5", - "@types/es-value-fixtures": "^1.4.4", - "@types/for-each": "^0.3.3", - "@types/get-intrinsic": "^1.2.2", - "@types/gopd": "^1.0.3", - "@types/has-property-descriptors": "^1.0.3", - "@types/object-inspect": "^1.8.4", - "@types/object.getownpropertydescriptors": "^2.1.4", - "@types/tape": "^5.6.4", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "es-value-fixtures": "^1.4.2", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "for-each": "^0.3.3", - "hasown": "^2.0.1", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "object-inspect": "^1.13.1", - "object.getownpropertydescriptors": "^2.1.7", - "reflect.ownkeys": "^1.1.4", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4", - "typescript": "next" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./package.json": "./package.json" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/ljharb/define-data-property#readme", - "keywords": [ - "define", - "data", - "property", - "object", - "accessor", - "javascript", - "ecmascript", - "enumerable", - "configurable", - "writable" - ], - "license": "MIT", - "main": "index.js", - "name": "define-data-property", - "publishConfig": { - "ignore": [ - ".github/workflows", - "types/reflect.ownkeys" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/define-data-property.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "npm run tsc", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prelint": "evalmd README.md", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "tsc": "tsc -p .", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "testling": { - "files": "test/index.js" - }, - "types": "./index.d.ts", - "version": "1.1.4" + "name": "define-data-property", + "version": "1.1.4", + "description": "Define a data property on an object. Will fall back to assignment in an engine without descriptors.", + "main": "index.js", + "types": "./index.d.ts", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "tsc": "tsc -p .", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "npm run tsc", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/define-data-property.git" + }, + "keywords": [ + "define", + "data", + "property", + "object", + "accessor", + "javascript", + "ecmascript", + "enumerable", + "configurable", + "writable" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/define-data-property/issues" + }, + "homepage": "https://github.com/ljharb/define-data-property#readme", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/call-bind": "^1.0.5", + "@types/define-properties": "^1.1.5", + "@types/es-value-fixtures": "^1.4.4", + "@types/for-each": "^0.3.3", + "@types/get-intrinsic": "^1.2.2", + "@types/gopd": "^1.0.3", + "@types/has-property-descriptors": "^1.0.3", + "@types/object-inspect": "^1.8.4", + "@types/object.getownpropertydescriptors": "^2.1.4", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "es-value-fixtures": "^1.4.2", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "hasown": "^2.0.1", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.1", + "object.getownpropertydescriptors": "^2.1.7", + "reflect.ownkeys": "^1.1.4", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "testling": { + "files": "test/index.js" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "types/reflect.ownkeys" + ] + } } diff --git a/node_modules/delayed-stream/package.json b/node_modules/delayed-stream/package.json index abe76ab..eea3291 100644 --- a/node_modules/delayed-stream/package.json +++ b/node_modules/delayed-stream/package.json @@ -1,62 +1,27 @@ { - "_from": "delayed-stream@~1.0.0", - "_id": "delayed-stream@1.0.0", - "_inBundle": false, - "_integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "_location": "/delayed-stream", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "delayed-stream@~1.0.0", - "name": "delayed-stream", - "escapedName": "delayed-stream", - "rawSpec": "~1.0.0", - "saveSpec": null, - "fetchSpec": "~1.0.0" - }, - "_requiredBy": [ - "/combined-stream" - ], - "_resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "_shasum": "df3ae199acadfb7d440aaae0b29e2272b24ec619", - "_spec": "delayed-stream@~1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/combined-stream", - "author": { - "name": "Felix Geisendörfer", - "email": "felix@debuggable.com", - "url": "http://debuggable.com/" - }, - "bugs": { - "url": "https://github.com/felixge/node-delayed-stream/issues" - }, - "bundleDependencies": false, + "author": "Felix Geisendörfer (http://debuggable.com/)", "contributors": [ - { - "name": "Mike Atkins", - "email": "apeherder@gmail.com" - } + "Mike Atkins " ], - "dependencies": {}, - "deprecated": false, - "description": "Buffers events from a stream until you are ready to handle them.", - "devDependencies": { - "fake": "0.2.0", - "far": "0.0.1" - }, - "engines": { - "node": ">=0.4.0" - }, - "homepage": "https://github.com/felixge/node-delayed-stream", - "license": "MIT", - "main": "./lib/delayed_stream", "name": "delayed-stream", + "description": "Buffers events from a stream until you are ready to handle them.", + "license": "MIT", + "version": "1.0.0", + "homepage": "https://github.com/felixge/node-delayed-stream", "repository": { "type": "git", "url": "git://github.com/felixge/node-delayed-stream.git" }, + "main": "./lib/delayed_stream", + "engines": { + "node": ">=0.4.0" + }, "scripts": { "test": "make test" }, - "version": "1.0.0" + "dependencies": {}, + "devDependencies": { + "fake": "0.2.0", + "far": "0.0.1" + } } diff --git a/node_modules/depd/package.json b/node_modules/depd/package.json index 3e69bc2..3857e19 100644 --- a/node_modules/depd/package.json +++ b/node_modules/depd/package.json @@ -1,45 +1,18 @@ { - "_from": "depd@2.0.0", - "_id": "depd@2.0.0", - "_inBundle": false, - "_integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "_location": "/depd", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "depd@2.0.0", - "name": "depd", - "escapedName": "depd", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/body-parser", - "/express", - "/express/body-parser", - "/http-errors", - "/send" - ], - "_resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "_shasum": "b696163cc757560d09cf22cc8fad1571b79e76df", - "_spec": "depd@2.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "browser": "lib/browser/index.js", - "bugs": { - "url": "https://github.com/dougwilson/nodejs-depd/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "depd", "description": "Deprecate all the things", + "version": "2.0.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "deprecate", + "deprecated" + ], + "repository": "dougwilson/nodejs-depd", + "browser": "lib/browser/index.js", "devDependencies": { - "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", + "beautify-benchmark": "0.2.4", "eslint": "5.7.0", "eslint-config-standard": "12.0.0", "eslint-plugin-import": "2.14.0", @@ -52,9 +25,6 @@ "safe-buffer": "5.1.2", "uid-safe": "2.1.5" }, - "engines": { - "node": ">= 0.8" - }, "files": [ "lib/", "History.md", @@ -62,16 +32,8 @@ "index.js", "Readme.md" ], - "homepage": "https://github.com/dougwilson/nodejs-depd#readme", - "keywords": [ - "deprecate", - "deprecated" - ], - "license": "MIT", - "name": "depd", - "repository": { - "type": "git", - "url": "git+https://github.com/dougwilson/nodejs-depd.git" + "engines": { + "node": ">= 0.8" }, "scripts": { "bench": "node benchmark/index.js", @@ -79,6 +41,5 @@ "test": "mocha --reporter spec --bail test/", "test-ci": "istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter spec test/ && istanbul report lcovonly text-summary", "test-cov": "istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter dot test/ && istanbul report lcov text-summary" - }, - "version": "2.0.0" + } } diff --git a/node_modules/destroy/package.json b/node_modules/destroy/package.json index 59afc18..c85e438 100644 --- a/node_modules/destroy/package.json +++ b/node_modules/destroy/package.json @@ -1,46 +1,18 @@ { - "_from": "destroy@1.2.0", - "_id": "destroy@1.2.0", - "_inBundle": false, - "_integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "_location": "/destroy", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "destroy@1.2.0", - "name": "destroy", - "escapedName": "destroy", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/body-parser", - "/express/body-parser", - "/send" - ], - "_resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "_shasum": "4803735509ad8be552934c67df614f94e66fa015", - "_spec": "destroy@1.2.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", + "name": "destroy", + "description": "destroy a stream if possible", + "version": "1.2.0", "author": { "name": "Jonathan Ong", "email": "me@jongleberry.com", - "url": "http://jongleberry.com" + "url": "http://jongleberry.com", + "twitter": "https://twitter.com/jongleberry" }, - "bugs": { - "url": "https://github.com/stream-utils/destroy/issues" - }, - "bundleDependencies": false, "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - } + "Douglas Christopher Wilson " ], - "deprecated": false, - "description": "destroy a stream if possible", + "license": "MIT", + "repository": "stream-utils/destroy", "devDependencies": { "eslint": "7.32.0", "eslint-config-standard": "14.1.1", @@ -55,11 +27,16 @@ "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec", + "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + }, "files": [ "index.js", "LICENSE" ], - "homepage": "https://github.com/stream-utils/destroy#readme", "keywords": [ "stream", "streams", @@ -67,18 +44,5 @@ "cleanup", "leak", "fd" - ], - "license": "MIT", - "name": "destroy", - "repository": { - "type": "git", - "url": "git+https://github.com/stream-utils/destroy.git" - }, - "scripts": { - "lint": "eslint .", - "test": "mocha --reporter spec", - "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", - "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "1.2.0" + ] } diff --git a/node_modules/dotenv/package.json b/node_modules/dotenv/package.json index 3fdc9c3..012d789 100644 --- a/node_modules/dotenv/package.json +++ b/node_modules/dotenv/package.json @@ -1,36 +1,48 @@ { - "_from": "dotenv@16.3.1", - "_id": "dotenv@16.3.1", - "_inBundle": false, - "_integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "_location": "/dotenv", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "dotenv@16.3.1", - "name": "dotenv", - "escapedName": "dotenv", - "rawSpec": "16.3.1", - "saveSpec": null, - "fetchSpec": "16.3.1" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "_shasum": "369034de7d7e5b120972693352a3bf112172cc3e", - "_spec": "dotenv@16.3.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "browser": { - "fs": false - }, - "bugs": { - "url": "https://github.com/motdotla/dotenv/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "dotenv", + "version": "16.3.1", "description": "Loads environment variables from .env file", + "main": "lib/main.js", + "types": "lib/main.d.ts", + "exports": { + ".": { + "types": "./lib/main.d.ts", + "require": "./lib/main.js", + "default": "./lib/main.js" + }, + "./config": "./config.js", + "./config.js": "./config.js", + "./lib/env-options": "./lib/env-options.js", + "./lib/env-options.js": "./lib/env-options.js", + "./lib/cli-options": "./lib/cli-options.js", + "./lib/cli-options.js": "./lib/cli-options.js", + "./package.json": "./package.json" + }, + "scripts": { + "dts-check": "tsc --project tests/types/tsconfig.json", + "lint": "standard", + "lint-readme": "standard-markdown", + "pretest": "npm run lint && npm run dts-check", + "test": "tap tests/*.js --100 -Rspec", + "prerelease": "npm test", + "release": "standard-version" + }, + "repository": { + "type": "git", + "url": "git://github.com/motdotla/dotenv.git" + }, + "funding": "https://github.com/motdotla/dotenv?sponsor=1", + "keywords": [ + "dotenv", + "env", + ".env", + "environment", + "variables", + "config", + "settings" + ], + "readmeFilename": "README.md", + "license": "BSD-2-Clause", "devDependencies": { "@definitelytyped/dtslint": "^0.0.133", "@types/node": "^18.11.3", @@ -46,47 +58,7 @@ "engines": { "node": ">=12" }, - "exports": { - ".": { - "types": "./lib/main.d.ts", - "require": "./lib/main.js", - "default": "./lib/main.js" - }, - "./config": "./config.js", - "./config.js": "./config.js", - "./lib/env-options": "./lib/env-options.js", - "./lib/env-options.js": "./lib/env-options.js", - "./lib/cli-options": "./lib/cli-options.js", - "./lib/cli-options.js": "./lib/cli-options.js", - "./package.json": "./package.json" - }, - "funding": "https://github.com/motdotla/dotenv?sponsor=1", - "homepage": "https://github.com/motdotla/dotenv#readme", - "keywords": [ - "dotenv", - "env", - ".env", - "environment", - "variables", - "config", - "settings" - ], - "license": "BSD-2-Clause", - "main": "lib/main.js", - "name": "dotenv", - "repository": { - "type": "git", - "url": "git://github.com/motdotla/dotenv.git" - }, - "scripts": { - "dts-check": "tsc --project tests/types/tsconfig.json", - "lint": "standard", - "lint-readme": "standard-markdown", - "prerelease": "npm test", - "pretest": "npm run lint && npm run dts-check", - "release": "standard-version", - "test": "tap tests/*.js --100 -Rspec" - }, - "types": "lib/main.d.ts", - "version": "16.3.1" + "browser": { + "fs": false + } } diff --git a/node_modules/ecdsa-sig-formatter/package.json b/node_modules/ecdsa-sig-formatter/package.json index 032c34b..6fb5ebf 100644 --- a/node_modules/ecdsa-sig-formatter/package.json +++ b/node_modules/ecdsa-sig-formatter/package.json @@ -1,39 +1,37 @@ { - "_from": "ecdsa-sig-formatter@1.0.11", - "_id": "ecdsa-sig-formatter@1.0.11", - "_inBundle": false, - "_integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "_location": "/ecdsa-sig-formatter", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ecdsa-sig-formatter@1.0.11", - "name": "ecdsa-sig-formatter", - "escapedName": "ecdsa-sig-formatter", - "rawSpec": "1.0.11", - "saveSpec": null, - "fetchSpec": "1.0.11" + "name": "ecdsa-sig-formatter", + "version": "1.0.11", + "description": "Translate ECDSA signatures between ASN.1/DER and JOSE-style concatenation", + "main": "src/ecdsa-sig-formatter.js", + "scripts": { + "check-style": "eslint .", + "pretest": "npm run check-style", + "test": "istanbul cover --root src _mocha -- spec", + "report-cov": "cat ./coverage/lcov.info | coveralls" }, - "_requiredBy": [ - "/jwa" + "typings": "./src/ecdsa-sig-formatter.d.ts", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git" + }, + "keywords": [ + "ecdsa", + "der", + "asn.1", + "jwt", + "jwa", + "jsonwebtoken", + "jose" ], - "_resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "_shasum": "ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf", - "_spec": "ecdsa-sig-formatter@1.0.11", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/jwa", - "author": { - "name": "D2L Corporation" - }, + "author": "D2L Corporation", + "license": "Apache-2.0", "bugs": { "url": "https://github.com/Brightspace/node-ecdsa-sig-formatter/issues" }, - "bundleDependencies": false, + "homepage": "https://github.com/Brightspace/node-ecdsa-sig-formatter#readme", "dependencies": { "safe-buffer": "^5.0.1" }, - "deprecated": false, - "description": "Translate ECDSA signatures between ASN.1/DER and JOSE-style concatenation", "devDependencies": { "bench": "^0.3.6", "chai": "^3.5.0", @@ -44,30 +42,5 @@ "jwk-to-pem": "^1.2.5", "mocha": "^2.5.3", "native-crypto": "^1.7.0" - }, - "homepage": "https://github.com/Brightspace/node-ecdsa-sig-formatter#readme", - "keywords": [ - "ecdsa", - "der", - "asn.1", - "jwt", - "jwa", - "jsonwebtoken", - "jose" - ], - "license": "Apache-2.0", - "main": "src/ecdsa-sig-formatter.js", - "name": "ecdsa-sig-formatter", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git" - }, - "scripts": { - "check-style": "eslint .", - "pretest": "npm run check-style", - "report-cov": "cat ./coverage/lcov.info | coveralls", - "test": "istanbul cover --root src _mocha -- spec" - }, - "typings": "./src/ecdsa-sig-formatter.d.ts", - "version": "1.0.11" + } } diff --git a/node_modules/ee-first/package.json b/node_modules/ee-first/package.json index a05a290..b6d0b7d 100644 --- a/node_modules/ee-first/package.json +++ b/node_modules/ee-first/package.json @@ -1,44 +1,18 @@ { - "_from": "ee-first@1.1.1", - "_id": "ee-first@1.1.1", - "_inBundle": false, - "_integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "_location": "/ee-first", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ee-first@1.1.1", - "name": "ee-first", - "escapedName": "ee-first", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" - }, - "_requiredBy": [ - "/on-finished" - ], - "_resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "_shasum": "590c61156b0ae2f4f0255732a158b266bc56b21d", - "_spec": "ee-first@1.1.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/on-finished", + "name": "ee-first", + "description": "return the first event in a set of ee/event pairs", + "version": "1.1.1", "author": { "name": "Jonathan Ong", "email": "me@jongleberry.com", - "url": "http://jongleberry.com" + "url": "http://jongleberry.com", + "twitter": "https://twitter.com/jongleberry" }, - "bugs": { - "url": "https://github.com/jonathanong/ee-first/issues" - }, - "bundleDependencies": false, "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - } + "Douglas Christopher Wilson " ], - "deprecated": false, - "description": "return the first event in a set of ee/event pairs", + "license": "MIT", + "repository": "jonathanong/ee-first", "devDependencies": { "istanbul": "0.3.9", "mocha": "2.2.5" @@ -47,17 +21,9 @@ "index.js", "LICENSE" ], - "homepage": "https://github.com/jonathanong/ee-first#readme", - "license": "MIT", - "name": "ee-first", - "repository": { - "type": "git", - "url": "git+https://github.com/jonathanong/ee-first.git" - }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" - }, - "version": "1.1.1" + } } diff --git a/node_modules/encodeurl/package.json b/node_modules/encodeurl/package.json index eb468f3..b9f25ef 100644 --- a/node_modules/encodeurl/package.json +++ b/node_modules/encodeurl/package.json @@ -1,42 +1,17 @@ { - "_from": "encodeurl@~1.0.2", - "_id": "encodeurl@1.0.2", - "_inBundle": false, - "_integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "_location": "/encodeurl", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "encodeurl@~1.0.2", - "name": "encodeurl", - "escapedName": "encodeurl", - "rawSpec": "~1.0.2", - "saveSpec": null, - "fetchSpec": "~1.0.2" - }, - "_requiredBy": [ - "/express", - "/finalhandler", - "/send", - "/serve-static" - ], - "_resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "_shasum": "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59", - "_spec": "encodeurl@~1.0.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "bugs": { - "url": "https://github.com/pillarjs/encodeurl/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - } - ], - "deprecated": false, + "name": "encodeurl", "description": "Encode a URL to a percent-encoded form, excluding already-encoded sequences", + "version": "1.0.2", + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "keywords": [ + "encode", + "encodeurl", + "url" + ], + "repository": "pillarjs/encodeurl", "devDependencies": { "eslint": "3.19.0", "eslint-config-standard": "10.2.1", @@ -47,32 +22,19 @@ "istanbul": "0.4.5", "mocha": "2.5.3" }, - "engines": { - "node": ">= 0.8" - }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], - "homepage": "https://github.com/pillarjs/encodeurl#readme", - "keywords": [ - "encode", - "encodeurl", - "url" - ], - "license": "MIT", - "name": "encodeurl", - "repository": { - "type": "git", - "url": "git+https://github.com/pillarjs/encodeurl.git" + "engines": { + "node": ">= 0.8" }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" - }, - "version": "1.0.2" + } } diff --git a/node_modules/es-define-property/package.json b/node_modules/es-define-property/package.json index 3c8b31a..45bc90f 100644 --- a/node_modules/es-define-property/package.json +++ b/node_modules/es-define-property/package.json @@ -1,111 +1,81 @@ { - "_from": "es-define-property@^1.0.0", - "_id": "es-define-property@1.0.0", - "_inBundle": false, - "_integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "_location": "/es-define-property", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "es-define-property@^1.0.0", - "name": "es-define-property", - "escapedName": "es-define-property", - "rawSpec": "^1.0.0", - "saveSpec": null, - "fetchSpec": "^1.0.0" - }, - "_requiredBy": [ - "/call-bind", - "/define-data-property", - "/has-property-descriptors" - ], - "_resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "_shasum": "c7faefbdff8b2696cf5f46921edfb77cc4ba3845", - "_spec": "es-define-property@^1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/call-bind", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/es-define-property/issues" - }, - "bundleDependencies": false, - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "deprecated": false, - "description": "`Object.defineProperty`, but not IE 8's broken one.", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "@types/get-intrinsic": "^1.2.2", - "@types/gopd": "^1.0.3", - "@types/tape": "^5.6.4", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "eslint": "^8.8.0", - "evalmd": "^0.0.19", - "gopd": "^1.0.1", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4", - "typescript": "next" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./package.json": "./package.json" - }, - "homepage": "https://github.com/ljharb/es-define-property#readme", - "keywords": [ - "javascript", - "ecmascript", - "object", - "define", - "property", - "defineProperty", - "Object.defineProperty" - ], - "license": "MIT", - "main": "index.js", - "name": "es-define-property", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/es-define-property.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "tsc -p .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prelint": "evalmd README.md", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "types": "./index.d.ts", - "version": "1.0.0" + "name": "es-define-property", + "version": "1.0.0", + "description": "`Object.defineProperty`, but not IE 8's broken one.", + "main": "index.js", + "types": "./index.d.ts", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/es-define-property.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "object", + "define", + "property", + "defineProperty", + "Object.defineProperty" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/es-define-property/issues" + }, + "homepage": "https://github.com/ljharb/es-define-property#readme", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/get-intrinsic": "^1.2.2", + "@types/gopd": "^1.0.3", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eslint": "^8.8.0", + "evalmd": "^0.0.19", + "gopd": "^1.0.1", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } } diff --git a/node_modules/es-errors/package.json b/node_modules/es-errors/package.json index 6d57f89..ff8c2a5 100644 --- a/node_modules/es-errors/package.json +++ b/node_modules/es-errors/package.json @@ -1,112 +1,80 @@ { - "_from": "es-errors@^1.3.0", - "_id": "es-errors@1.3.0", - "_inBundle": false, - "_integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "_location": "/es-errors", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "es-errors@^1.3.0", - "name": "es-errors", - "escapedName": "es-errors", - "rawSpec": "^1.3.0", - "saveSpec": null, - "fetchSpec": "^1.3.0" - }, - "_requiredBy": [ - "/call-bind", - "/define-data-property", - "/get-intrinsic", - "/set-function-length", - "/side-channel" - ], - "_resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "_shasum": "05f75a25dab98e4fb1dcd5e1472c0546d5057c8f", - "_spec": "es-errors@^1.3.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/side-channel", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/es-errors/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "A simple cache for a few of the JS Error constructors.", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "@types/tape": "^5.6.4", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "eclint": "^2.8.1", - "eslint": "^8.8.0", - "evalmd": "^0.0.19", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4", - "typescript": "next" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./eval": "./eval.js", - "./range": "./range.js", - "./ref": "./ref.js", - "./syntax": "./syntax.js", - "./type": "./type.js", - "./uri": "./uri.js", - "./package.json": "./package.json" - }, - "homepage": "https://github.com/ljharb/es-errors#readme", - "keywords": [ - "javascript", - "ecmascript", - "error", - "typeerror", - "syntaxerror", - "rangeerror" - ], - "license": "MIT", - "main": "index.js", - "name": "es-errors", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/es-errors.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prelint": "evalmd README.md", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "version": "1.3.0" + "name": "es-errors", + "version": "1.3.0", + "description": "A simple cache for a few of the JS Error constructors.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./eval": "./eval.js", + "./range": "./range.js", + "./ref": "./ref.js", + "./syntax": "./syntax.js", + "./type": "./type.js", + "./uri": "./uri.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "test": "npm run tests-only", + "tests-only": "nyc tape 'test/**/*.js'", + "posttest": "aud --production", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/es-errors.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "error", + "typeerror", + "syntaxerror", + "rangeerror" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/es-errors/issues" + }, + "homepage": "https://github.com/ljharb/es-errors#readme", + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eclint": "^2.8.1", + "eslint": "^8.8.0", + "evalmd": "^0.0.19", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } } diff --git a/node_modules/escape-html/package.json b/node_modules/escape-html/package.json index 82bd8bb..57ec7bd 100644 --- a/node_modules/escape-html/package.json +++ b/node_modules/escape-html/package.json @@ -1,59 +1,24 @@ { - "_from": "escape-html@~1.0.3", - "_id": "escape-html@1.0.3", - "_inBundle": false, - "_integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "_location": "/escape-html", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "escape-html@~1.0.3", - "name": "escape-html", - "escapedName": "escape-html", - "rawSpec": "~1.0.3", - "saveSpec": null, - "fetchSpec": "~1.0.3" - }, - "_requiredBy": [ - "/express", - "/finalhandler", - "/send", - "/serve-static" - ], - "_resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "_shasum": "0258eae4d3d0c0974de1c169188ef0051d1d1988", - "_spec": "escape-html@~1.0.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "bugs": { - "url": "https://github.com/component/escape-html/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "escape-html", "description": "Escape string for use in HTML", + "version": "1.0.3", + "license": "MIT", + "keywords": [ + "escape", + "html", + "utility" + ], + "repository": "component/escape-html", "devDependencies": { - "beautify-benchmark": "0.2.4", - "benchmark": "1.0.0" + "benchmark": "1.0.0", + "beautify-benchmark": "0.2.4" }, "files": [ "LICENSE", "Readme.md", "index.js" ], - "homepage": "https://github.com/component/escape-html#readme", - "keywords": [ - "escape", - "html", - "utility" - ], - "license": "MIT", - "name": "escape-html", - "repository": { - "type": "git", - "url": "git+https://github.com/component/escape-html.git" - }, "scripts": { "bench": "node benchmark/index.js" - }, - "version": "1.0.3" + } } diff --git a/node_modules/etag/package.json b/node_modules/etag/package.json index 59a261f..b06ab80 100644 --- a/node_modules/etag/package.json +++ b/node_modules/etag/package.json @@ -1,44 +1,18 @@ { - "_from": "etag@~1.8.1", - "_id": "etag@1.8.1", - "_inBundle": false, - "_integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "_location": "/etag", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "etag@~1.8.1", - "name": "etag", - "escapedName": "etag", - "rawSpec": "~1.8.1", - "saveSpec": null, - "fetchSpec": "~1.8.1" - }, - "_requiredBy": [ - "/express", - "/send" - ], - "_resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "_shasum": "41ae2eeb65efa62268aebfea83ac7d79299b0887", - "_spec": "etag@~1.8.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "bugs": { - "url": "https://github.com/jshttp/etag/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "David Björklund", - "email": "david.bjorklund@gmail.com" - } - ], - "deprecated": false, + "name": "etag", "description": "Create simple HTTP ETags", + "version": "1.8.1", + "contributors": [ + "Douglas Christopher Wilson ", + "David Björklund " + ], + "license": "MIT", + "keywords": [ + "etag", + "http", + "res" + ], + "repository": "jshttp/etag", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", @@ -54,26 +28,14 @@ "safe-buffer": "5.1.1", "seedrandom": "2.4.3" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], - "homepage": "https://github.com/jshttp/etag#readme", - "keywords": [ - "etag", - "http", - "res" - ], - "license": "MIT", - "name": "etag", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/etag.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "bench": "node benchmark/index.js", @@ -81,6 +43,5 @@ "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" - }, - "version": "1.8.1" + } } diff --git a/node_modules/express/node_modules/body-parser/package.json b/node_modules/express/node_modules/body-parser/package.json index bfcecaa..9cd2ccb 100644 --- a/node_modules/express/node_modules/body-parser/package.json +++ b/node_modules/express/node_modules/body-parser/package.json @@ -1,42 +1,13 @@ { - "_from": "body-parser@1.20.1", - "_id": "body-parser@1.20.1", - "_inBundle": false, - "_integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "_location": "/express/body-parser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "body-parser@1.20.1", - "name": "body-parser", - "escapedName": "body-parser", - "rawSpec": "1.20.1", - "saveSpec": null, - "fetchSpec": "1.20.1" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "_shasum": "b1812a8912c195cd371a3ee5e66faa2338a5c668", - "_spec": "body-parser@1.20.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "bugs": { - "url": "https://github.com/expressjs/body-parser/issues" - }, - "bundleDependencies": false, + "name": "body-parser", + "description": "Node.js body parsing middleware", + "version": "1.20.1", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" ], + "license": "MIT", + "repository": "expressjs/body-parser", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -51,8 +22,6 @@ "type-is": "~1.6.18", "unpipe": "1.0.0" }, - "deprecated": false, - "description": "Node.js body parsing middleware", "devDependencies": { "eslint": "8.24.0", "eslint-config-standard": "14.1.1", @@ -67,10 +36,6 @@ "safe-buffer": "5.2.1", "supertest": "6.3.0" }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - }, "files": [ "lib/", "LICENSE", @@ -78,18 +43,14 @@ "SECURITY.md", "index.js" ], - "homepage": "https://github.com/expressjs/body-parser#readme", - "license": "MIT", - "name": "body-parser", - "repository": { - "type": "git", - "url": "git+https://github.com/expressjs/body-parser.git" + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" }, "scripts": { "lint": "eslint .", "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "1.20.1" + } } diff --git a/node_modules/express/node_modules/raw-body/package.json b/node_modules/express/node_modules/raw-body/package.json index 4b2ecb3..50fc90a 100644 --- a/node_modules/express/node_modules/raw-body/package.json +++ b/node_modules/express/node_modules/raw-body/package.json @@ -1,54 +1,20 @@ { - "_from": "raw-body@2.5.1", - "_id": "raw-body@2.5.1", - "_inBundle": false, - "_integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "_location": "/express/raw-body", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "raw-body@2.5.1", - "name": "raw-body", - "escapedName": "raw-body", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/express/body-parser" - ], - "_resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "_shasum": "fe1b1628b181b700215e5fd42389f98b71392857", - "_spec": "raw-body@2.5.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express/node_modules/body-parser", - "author": { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - }, - "bugs": { - "url": "https://github.com/stream-utils/raw-body/issues" - }, - "bundleDependencies": false, + "name": "raw-body", + "description": "Get and validate the raw body of a readable stream.", + "version": "2.5.1", + "author": "Jonathan Ong (http://jongleberry.com)", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Raynos", - "email": "raynos2@gmail.com" - } + "Douglas Christopher Wilson ", + "Raynos " ], + "license": "MIT", + "repository": "stream-utils/raw-body", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, - "deprecated": false, - "description": "Get and validate the raw body of a readable stream.", "devDependencies": { "bluebird": "3.7.2", "eslint": "7.32.0", @@ -74,18 +40,10 @@ "index.d.ts", "index.js" ], - "homepage": "https://github.com/stream-utils/raw-body#readme", - "license": "MIT", - "name": "raw-body", - "repository": { - "type": "git", - "url": "git+https://github.com/stream-utils/raw-body.git" - }, "scripts": { "lint": "eslint .", "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/", "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "2.5.1" + } } diff --git a/node_modules/express/package.json b/node_modules/express/package.json index 6e292ca..0996637 100644 --- a/node_modules/express/package.json +++ b/node_modules/express/package.json @@ -1,76 +1,31 @@ { - "_from": "express@4.18.2", - "_id": "express@4.18.2", - "_inBundle": false, - "_integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "_location": "/express", - "_phantomChildren": { - "bytes": "3.1.2", - "content-type": "1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "type-is": "1.6.18", - "unpipe": "1.0.0" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "express@4.18.2", - "name": "express", - "escapedName": "express", - "rawSpec": "4.18.2", - "saveSpec": null, - "fetchSpec": "4.18.2" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "_shasum": "3fabe08296e930c796c19e3c516979386ba9fd59", - "_spec": "express@4.18.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "bugs": { - "url": "https://github.com/expressjs/express/issues" - }, - "bundleDependencies": false, + "name": "express", + "description": "Fast, unopinionated, minimalist web framework", + "version": "4.18.2", + "author": "TJ Holowaychuk ", "contributors": [ - { - "name": "Aaron Heckmann", - "email": "aaron.heckmann+github@gmail.com" - }, - { - "name": "Ciaran Jessup", - "email": "ciaranj@gmail.com" - }, - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Guillermo Rauch", - "email": "rauchg@gmail.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com" - }, - { - "name": "Roman Shtylman", - "email": "shtylman+expressjs@gmail.com" - }, - { - "name": "Young Jae Sim", - "email": "hanul@hanul.me" - } + "Aaron Heckmann ", + "Ciaran Jessup ", + "Douglas Christopher Wilson ", + "Guillermo Rauch ", + "Jonathan Ong ", + "Roman Shtylman ", + "Young Jae Sim " + ], + "license": "MIT", + "repository": "expressjs/express", + "homepage": "http://expressjs.com/", + "keywords": [ + "express", + "framework", + "sinatra", + "web", + "http", + "rest", + "restful", + "router", + "app", + "api" ], "dependencies": { "accepts": "~1.3.8", @@ -105,8 +60,6 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "deprecated": false, - "description": "Fast, unopinionated, minimalist web framework", "devDependencies": { "after": "0.8.2", "connect-redis": "3.4.2", @@ -136,31 +89,11 @@ "index.js", "lib/" ], - "homepage": "http://expressjs.com/", - "keywords": [ - "express", - "framework", - "sinatra", - "web", - "http", - "rest", - "restful", - "router", - "app", - "api" - ], - "license": "MIT", - "name": "express", - "repository": { - "type": "git", - "url": "git+https://github.com/expressjs/express.git" - }, "scripts": { "lint": "eslint .", "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/", "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test", "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/" - }, - "version": "4.18.2" + } } diff --git a/node_modules/fill-range/package.json b/node_modules/fill-range/package.json index e10b443..07d3076 100644 --- a/node_modules/fill-range/package.json +++ b/node_modules/fill-range/package.json @@ -1,72 +1,38 @@ { - "_from": "fill-range@^7.0.1", - "_id": "fill-range@7.0.1", - "_inBundle": false, - "_integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "_location": "/fill-range", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "fill-range@^7.0.1", - "name": "fill-range", - "escapedName": "fill-range", - "rawSpec": "^7.0.1", - "saveSpec": null, - "fetchSpec": "^7.0.1" - }, - "_requiredBy": [ - "/braces" + "name": "fill-range", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "version": "7.0.1", + "homepage": "https://github.com/jonschlinkert/fill-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Edo Rivai (edo.rivai.nl)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Paul Miller (paulmillr.com)", + "Rouven Weßling (www.rouvenwessling.de)", + "(https://github.com/wtgtybhertgeghgtwtg)" ], - "_resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "_shasum": "1919a6a7c75fe38b2c7c77e5198535da9acdda40", - "_spec": "fill-range@^7.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/braces", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Edo Rivai", - "url": "edo.rivai.nl" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Paul Miller", - "url": "paulmillr.com" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - }, - { - "url": "https://github.com/wtgtybhertgeghgtwtg" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "to-regex-range": "^5.0.1" }, - "deprecated": false, - "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", "devDependencies": { "gulp-format-md": "^2.0.0", "mocha": "^6.1.1" }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/fill-range", "keywords": [ "alpha", "alphabetical", @@ -87,16 +53,6 @@ "regex", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "fill-range", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/fill-range.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -109,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" + } } diff --git a/node_modules/finalhandler/package.json b/node_modules/finalhandler/package.json index a8cceb3..16bf11e 100644 --- a/node_modules/finalhandler/package.json +++ b/node_modules/finalhandler/package.json @@ -1,35 +1,10 @@ { - "_from": "finalhandler@1.2.0", - "_id": "finalhandler@1.2.0", - "_inBundle": false, - "_integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "_location": "/finalhandler", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "finalhandler@1.2.0", - "name": "finalhandler", - "escapedName": "finalhandler", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "_shasum": "7d23fe5731b207b4640e4fcd00aec1f9207a7b32", - "_spec": "finalhandler@1.2.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/pillarjs/finalhandler/issues" - }, - "bundleDependencies": false, + "name": "finalhandler", + "description": "Node.js final http responder", + "version": "1.2.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "pillarjs/finalhandler", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -39,8 +14,6 @@ "statuses": "2.0.1", "unpipe": "~1.0.0" }, - "deprecated": false, - "description": "Node.js final http responder", "devDependencies": { "eslint": "7.32.0", "eslint-config-standard": "14.1.1", @@ -55,27 +28,19 @@ "safe-buffer": "5.2.1", "supertest": "6.2.2" }, - "engines": { - "node": ">= 0.8" - }, "files": [ "LICENSE", "HISTORY.md", "SECURITY.md", "index.js" ], - "homepage": "https://github.com/pillarjs/finalhandler#readme", - "license": "MIT", - "name": "finalhandler", - "repository": { - "type": "git", - "url": "git+https://github.com/pillarjs/finalhandler.git" + "engines": { + "node": ">= 0.8" }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec --bail --check-leaks test/", "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "1.2.0" + } } diff --git a/node_modules/follow-redirects/package.json b/node_modules/follow-redirects/package.json index 7360d9a..9b87663 100644 --- a/node_modules/follow-redirects/package.json +++ b/node_modules/follow-redirects/package.json @@ -1,70 +1,27 @@ { - "_from": "follow-redirects@^1.15.4", - "_id": "follow-redirects@1.15.5", - "_inBundle": false, - "_integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", - "_location": "/follow-redirects", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "follow-redirects@^1.15.4", - "name": "follow-redirects", - "escapedName": "follow-redirects", - "rawSpec": "^1.15.4", - "saveSpec": null, - "fetchSpec": "^1.15.4" - }, - "_requiredBy": [ - "/axios" - ], - "_resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "_shasum": "54d4d6d062c0fa7d9d17feb008461550e3ba8020", - "_spec": "follow-redirects@^1.15.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/axios", - "author": { - "name": "Ruben Verborgh", - "email": "ruben@verborgh.org", - "url": "https://ruben.verborgh.org/" - }, - "bugs": { - "url": "https://github.com/follow-redirects/follow-redirects/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Olivier Lalonde", - "email": "olalonde@gmail.com", - "url": "http://www.syskall.com" - }, - { - "name": "James Talmage", - "email": "james@talmage.io" - } - ], - "deprecated": false, + "name": "follow-redirects", + "version": "1.15.5", "description": "HTTP and HTTPS modules that follow redirects.", - "devDependencies": { - "concat-stream": "^2.0.0", - "eslint": "^5.16.0", - "express": "^4.16.4", - "lolex": "^3.1.0", - "mocha": "^6.0.2", - "nyc": "^14.1.1" - }, - "engines": { - "node": ">=4.0" - }, + "license": "MIT", + "main": "index.js", "files": [ "*.js" ], - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], + "engines": { + "node": ">=4.0" + }, + "scripts": { + "lint": "eslint *.js test", + "test": "nyc mocha" + }, + "repository": { + "type": "git", + "url": "git@github.com:follow-redirects/follow-redirects.git" + }, "homepage": "https://github.com/follow-redirects/follow-redirects", + "bugs": { + "url": "https://github.com/follow-redirects/follow-redirects/issues" + }, "keywords": [ "http", "https", @@ -74,21 +31,28 @@ "location", "utility" ], - "license": "MIT", - "main": "index.js", - "name": "follow-redirects", + "author": "Ruben Verborgh (https://ruben.verborgh.org/)", + "contributors": [ + "Olivier Lalonde (http://www.syskall.com)", + "James Talmage " + ], + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], "peerDependenciesMeta": { "debug": { "optional": true } }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/follow-redirects/follow-redirects.git" - }, - "scripts": { - "lint": "eslint *.js test", - "test": "nyc mocha" - }, - "version": "1.15.5" + "devDependencies": { + "concat-stream": "^2.0.0", + "eslint": "^5.16.0", + "express": "^4.16.4", + "lolex": "^3.1.0", + "mocha": "^6.0.2", + "nyc": "^14.1.1" + } } diff --git a/node_modules/form-data/package.json b/node_modules/form-data/package.json index 555830d..0f20240 100644 --- a/node_modules/form-data/package.json +++ b/node_modules/form-data/package.json @@ -1,44 +1,47 @@ { - "_from": "form-data@^4.0.0", - "_id": "form-data@4.0.0", - "_inBundle": false, - "_integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "_location": "/form-data", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "form-data@^4.0.0", - "name": "form-data", - "escapedName": "form-data", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/axios" - ], - "_resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "_shasum": "93919daeaf361ee529584b9b31664dc12c9fa452", - "_spec": "form-data@^4.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/axios", - "author": { - "name": "Felix Geisendörfer", - "email": "felix@debuggable.com", - "url": "http://debuggable.com/" + "author": "Felix Geisendörfer (http://debuggable.com/)", + "name": "form-data", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "version": "4.0.0", + "repository": { + "type": "git", + "url": "git://github.com/form-data/form-data.git" }, + "main": "./lib/form_data", "browser": "./lib/browser", - "bugs": { - "url": "https://github.com/form-data/form-data/issues" + "typings": "./index.d.ts", + "scripts": { + "pretest": "rimraf coverage test/tmp", + "test": "istanbul cover test/run.js", + "posttest": "istanbul report lcov text", + "lint": "eslint lib/*.js test/*.js test/integration/*.js", + "report": "istanbul report lcov text", + "ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8", + "ci-test": "npm run test && npm run browser && npm run report", + "predebug": "rimraf coverage test/tmp", + "debug": "verbose=1 ./test/run.js", + "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage", + "check": "istanbul check-coverage coverage/coverage*.json", + "files": "pkgfiles --sort=name", + "get-version": "node -e \"console.log(require('./package.json').version)\"", + "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md", + "restore-readme": "mv README.md.bak README.md", + "prepublish": "in-publish && npm run update-readme || not-in-publish", + "postpublish": "npm run restore-readme" + }, + "pre-commit": [ + "lint", + "ci-test", + "check" + ], + "engines": { + "node": ">= 6" }, - "bundleDependencies": false, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, - "deprecated": false, - "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", "devDependencies": { "@types/node": "^12.0.10", "browserify": "^13.1.1", @@ -53,49 +56,13 @@ "is-node-modern": "^1.0.0", "istanbul": "^0.4.5", "obake": "^0.1.2", + "puppeteer": "^1.19.0", "pkgfiles": "^2.3.0", "pre-commit": "^1.1.3", - "puppeteer": "^1.19.0", "request": "^2.88.0", "rimraf": "^2.7.1", "tape": "^4.6.2", "typescript": "^3.5.2" }, - "engines": { - "node": ">= 6" - }, - "homepage": "https://github.com/form-data/form-data#readme", - "license": "MIT", - "main": "./lib/form_data", - "name": "form-data", - "pre-commit": [ - "lint", - "ci-test", - "check" - ], - "repository": { - "type": "git", - "url": "git://github.com/form-data/form-data.git" - }, - "scripts": { - "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage", - "check": "istanbul check-coverage coverage/coverage*.json", - "ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8", - "ci-test": "npm run test && npm run browser && npm run report", - "debug": "verbose=1 ./test/run.js", - "files": "pkgfiles --sort=name", - "get-version": "node -e \"console.log(require('./package.json').version)\"", - "lint": "eslint lib/*.js test/*.js test/integration/*.js", - "postpublish": "npm run restore-readme", - "posttest": "istanbul report lcov text", - "predebug": "rimraf coverage test/tmp", - "prepublish": "in-publish && npm run update-readme || not-in-publish", - "pretest": "rimraf coverage test/tmp", - "report": "istanbul report lcov text", - "restore-readme": "mv README.md.bak README.md", - "test": "istanbul cover test/run.js", - "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md" - }, - "typings": "./index.d.ts", - "version": "4.0.0" + "license": "MIT" } diff --git a/node_modules/forwarded/package.json b/node_modules/forwarded/package.json index 751e215..bf9c7d6 100644 --- a/node_modules/forwarded/package.json +++ b/node_modules/forwarded/package.json @@ -1,39 +1,17 @@ { - "_from": "forwarded@0.2.0", - "_id": "forwarded@0.2.0", - "_inBundle": false, - "_integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "_location": "/forwarded", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "forwarded@0.2.0", - "name": "forwarded", - "escapedName": "forwarded", - "rawSpec": "0.2.0", - "saveSpec": null, - "fetchSpec": "0.2.0" - }, - "_requiredBy": [ - "/proxy-addr" - ], - "_resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "_shasum": "2269936428aad4c15c7ebe9779a84bf0b2a81811", - "_spec": "forwarded@0.2.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/proxy-addr", - "bugs": { - "url": "https://github.com/jshttp/forwarded/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - } - ], - "deprecated": false, + "name": "forwarded", "description": "Parse HTTP X-Forwarded-For header", + "version": "0.2.0", + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "keywords": [ + "x-forwarded-for", + "http", + "req" + ], + "repository": "jshttp/forwarded", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", @@ -47,26 +25,14 @@ "mocha": "8.4.0", "nyc": "15.1.0" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], - "homepage": "https://github.com/jshttp/forwarded#readme", - "keywords": [ - "x-forwarded-for", - "http", - "req" - ], - "license": "MIT", - "name": "forwarded", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/forwarded.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "bench": "node benchmark/index.js", @@ -75,6 +41,5 @@ "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test", "version": "node scripts/version-history.js && git add HISTORY.md" - }, - "version": "0.2.0" + } } diff --git a/node_modules/fresh/package.json b/node_modules/fresh/package.json index c5683cc..c2fa0f4 100644 --- a/node_modules/fresh/package.json +++ b/node_modules/fresh/package.json @@ -1,50 +1,20 @@ { - "_from": "fresh@0.5.2", - "_id": "fresh@0.5.2", - "_inBundle": false, - "_integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "_location": "/fresh", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fresh@0.5.2", - "name": "fresh", - "escapedName": "fresh", - "rawSpec": "0.5.2", - "saveSpec": null, - "fetchSpec": "0.5.2" - }, - "_requiredBy": [ - "/express", - "/send" - ], - "_resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "_shasum": "3d8cadd90d976569fa835ab1f8e4b23a105605a7", - "_spec": "fresh@0.5.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca", - "url": "http://tjholowaychuk.com" - }, - "bugs": { - "url": "https://github.com/jshttp/fresh/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } - ], - "deprecated": false, + "name": "fresh", "description": "HTTP response freshness testing", + "version": "0.5.2", + "author": "TJ Holowaychuk (http://tjholowaychuk.com)", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "keywords": [ + "fresh", + "http", + "conditional", + "cache" + ], + "repository": "jshttp/fresh", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", @@ -58,26 +28,13 @@ "istanbul": "0.4.5", "mocha": "1.21.5" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "HISTORY.md", "LICENSE", "index.js" ], - "homepage": "https://github.com/jshttp/fresh#readme", - "keywords": [ - "fresh", - "http", - "conditional", - "cache" - ], - "license": "MIT", - "name": "fresh", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/fresh.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "bench": "node benchmark/index.js", @@ -85,6 +42,5 @@ "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" - }, - "version": "0.5.2" + } } diff --git a/node_modules/function-bind/package.json b/node_modules/function-bind/package.json index ec2274e..6185963 100644 --- a/node_modules/function-bind/package.json +++ b/node_modules/function-bind/package.json @@ -1,47 +1,23 @@ { - "_from": "function-bind@^1.1.2", - "_id": "function-bind@1.1.2", - "_inBundle": false, - "_integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "_location": "/function-bind", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "function-bind@^1.1.2", - "name": "function-bind", - "escapedName": "function-bind", - "rawSpec": "^1.1.2", - "saveSpec": null, - "fetchSpec": "^1.1.2" - }, - "_requiredBy": [ - "/call-bind", - "/get-intrinsic", - "/hasown", - "/set-function-length" + "name": "function-bind", + "version": "1.1.2", + "description": "Implementation of Function.prototype.bind", + "keywords": [ + "function", + "bind", + "shim", + "es5" ], - "_resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "_shasum": "2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c", - "_spec": "function-bind@^1.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/call-bind", - "author": { - "name": "Raynos", - "email": "raynos2@gmail.com" + "author": "Raynos ", + "repository": { + "type": "git", + "url": "https://github.com/Raynos/function-bind.git" }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true + "funding": { + "url": "https://github.com/sponsors/ljharb" }, - "bugs": { - "url": "https://github.com/Raynos/function-bind/issues", - "email": "raynos2@gmail.com" - }, - "bundleDependencies": false, + "main": "index", + "homepage": "https://github.com/Raynos/function-bind", "contributors": [ { "name": "Raynos" @@ -51,8 +27,10 @@ "url": "https://github.com/ljharb" } ], - "deprecated": false, - "description": "Implementation of Function.prototype.bind", + "bugs": { + "url": "https://github.com/Raynos/function-bind/issues", + "email": "raynos2@gmail.com" + }, "devDependencies": { "@ljharb/eslint-config": "^21.1.0", "aud": "^2.0.3", @@ -64,39 +42,18 @@ "safe-publish-latest": "^2.0.0", "tape": "^5.7.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/Raynos/function-bind", - "keywords": [ - "function", - "bind", - "shim", - "es5" - ], "license": "MIT", - "main": "index", - "name": "function-bind", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/Raynos/function-bind.git" - }, "scripts": { - "lint": "eslint --ext=js,mjs .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepack": "npmignore --auto --commentLines=autogenerated", "pretest": "npm run lint", "test": "npm run tests-only", + "posttest": "aud --production", "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" + "lint": "eslint --ext=js,mjs .", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" }, "testling": { "files": "test/index.js", @@ -114,5 +71,17 @@ "android-browser/4.2..latest" ] }, - "version": "1.1.2" + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } } diff --git a/node_modules/get-intrinsic/package.json b/node_modules/get-intrinsic/package.json index d19502a..568dff9 100644 --- a/node_modules/get-intrinsic/package.json +++ b/node_modules/get-intrinsic/package.json @@ -1,125 +1,93 @@ { - "_from": "get-intrinsic@^1.2.4", - "_id": "get-intrinsic@1.2.4", - "_inBundle": false, - "_integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "_location": "/get-intrinsic", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "get-intrinsic@^1.2.4", - "name": "get-intrinsic", - "escapedName": "get-intrinsic", - "rawSpec": "^1.2.4", - "saveSpec": null, - "fetchSpec": "^1.2.4" - }, - "_requiredBy": [ - "/call-bind", - "/es-define-property", - "/gopd", - "/set-function-length", - "/side-channel" - ], - "_resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "_shasum": "e385f5a4b5227d449c3eabbad05494ef0abbeadd", - "_spec": "get-intrinsic@^1.2.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/side-channel", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/get-intrinsic/issues" - }, - "bundleDependencies": false, - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "deprecated": false, - "description": "Get and robustly cache all JS language-level intrinsics at first require time", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "call-bind": "^1.0.5", - "es-abstract": "^1.22.3", - "es-value-fixtures": "^1.4.2", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "make-async-function": "^1.0.0", - "make-async-generator-function": "^1.0.0", - "make-generator-function": "^2.0.0", - "mock-property": "^1.0.3", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "object-inspect": "^1.13.1", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./package.json": "./package.json" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/ljharb/get-intrinsic#readme", - "keywords": [ - "javascript", - "ecmascript", - "es", - "js", - "intrinsic", - "getintrinsic", - "es-abstract" - ], - "license": "MIT", - "main": "index.js", - "name": "get-intrinsic", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/get-intrinsic.git" - }, - "scripts": { - "lint": "eslint --ext=.js,.mjs .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prelint": "evalmd README.md", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "testling": { - "files": "test/GetIntrinsic.js" - }, - "version": "1.2.4" + "name": "get-intrinsic", + "version": "1.2.4", + "description": "Get and robustly cache all JS language-level intrinsics at first require time", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "prelint": "evalmd README.md", + "lint": "eslint --ext=.js,.mjs .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/get-intrinsic.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "es", + "js", + "intrinsic", + "getintrinsic", + "es-abstract" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/get-intrinsic/issues" + }, + "homepage": "https://github.com/ljharb/get-intrinsic#readme", + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "call-bind": "^1.0.5", + "es-abstract": "^1.22.3", + "es-value-fixtures": "^1.4.2", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "make-async-function": "^1.0.0", + "make-async-generator-function": "^1.0.0", + "make-generator-function": "^2.0.0", + "mock-property": "^1.0.3", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "testling": { + "files": "test/GetIntrinsic.js" + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } } diff --git a/node_modules/glob-parent/package.json b/node_modules/glob-parent/package.json index 157e56f..125c971 100644 --- a/node_modules/glob-parent/package.json +++ b/node_modules/glob-parent/package.json @@ -1,51 +1,32 @@ { - "_from": "glob-parent@~5.1.2", - "_id": "glob-parent@5.1.2", - "_inBundle": false, - "_integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "_location": "/glob-parent", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "glob-parent@~5.1.2", - "name": "glob-parent", - "escapedName": "glob-parent", - "rawSpec": "~5.1.2", - "saveSpec": null, - "fetchSpec": "~5.1.2" - }, - "_requiredBy": [ - "/chokidar" - ], - "_resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "_shasum": "869832c58034fe68a4093c17dc15e8340d8401c4", - "_spec": "glob-parent@~5.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/chokidar", - "author": { - "name": "Gulp Team", - "email": "team@gulpjs.com", - "url": "https://gulpjs.com/" - }, - "bugs": { - "url": "https://github.com/gulpjs/glob-parent/issues" - }, - "bundleDependencies": false, + "name": "glob-parent", + "version": "5.1.2", + "description": "Extract the non-magic parent path from a glob string.", + "author": "Gulp Team (https://gulpjs.com/)", "contributors": [ - { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - { - "name": "Blaine Bublitz", - "email": "blaine.bublitz@gmail.com" - } + "Elan Shanker (https://github.com/es128)", + "Blaine Bublitz " ], + "repository": "gulpjs/glob-parent", + "license": "ISC", + "engines": { + "node": ">= 6" + }, + "main": "index.js", + "files": [ + "LICENSE", + "index.js" + ], + "scripts": { + "lint": "eslint .", + "pretest": "npm run lint", + "test": "nyc mocha --async-only", + "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, "dependencies": { "is-glob": "^4.0.1" }, - "deprecated": false, - "description": "Extract the non-magic parent path from a glob string.", "devDependencies": { "coveralls": "^3.0.11", "eslint": "^2.13.1", @@ -54,14 +35,6 @@ "mocha": "^6.0.2", "nyc": "^13.3.0" }, - "engines": { - "node": ">= 6" - }, - "files": [ - "LICENSE", - "index.js" - ], - "homepage": "https://github.com/gulpjs/glob-parent#readme", "keywords": [ "glob", "parent", @@ -71,20 +44,5 @@ "directory", "base", "wildcard" - ], - "license": "ISC", - "main": "index.js", - "name": "glob-parent", - "repository": { - "type": "git", - "url": "git+https://github.com/gulpjs/glob-parent.git" - }, - "scripts": { - "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit", - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "lint": "eslint .", - "pretest": "npm run lint", - "test": "nyc mocha --async-only" - }, - "version": "5.1.2" + ] } diff --git a/node_modules/gopd/package.json b/node_modules/gopd/package.json index bed93f1..d5e1fa4 100644 --- a/node_modules/gopd/package.json +++ b/node_modules/gopd/package.json @@ -1,100 +1,71 @@ { - "_from": "gopd@^1.0.1", - "_id": "gopd@1.0.1", - "_inBundle": false, - "_integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "_location": "/gopd", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "gopd@^1.0.1", - "name": "gopd", - "escapedName": "gopd", - "rawSpec": "^1.0.1", - "saveSpec": null, - "fetchSpec": "^1.0.1" - }, - "_requiredBy": [ - "/define-data-property", - "/set-function-length" - ], - "_resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "_shasum": "29ff76de69dac7489b7c0918a5788e56477c332c", - "_spec": "gopd@^1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/set-function-length", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/gopd/issues" - }, - "bundleDependencies": false, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "deprecated": false, - "description": "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.", - "devDependencies": { - "@ljharb/eslint-config": "^21.0.0", - "aud": "^2.0.1", - "auto-changelog": "^2.4.0", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "in-publish": "^2.0.1", - "npmignore": "^0.3.0", - "safe-publish-latest": "^2.0.0", - "tape": "^5.6.1" - }, - "exports": { - ".": "./index.js", - "./package.json": "./package.json" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/ljharb/gopd#readme", - "keywords": [ - "ecmascript", - "javascript", - "getownpropertydescriptor", - "property", - "descriptor" - ], - "license": "MIT", - "main": "index.js", - "name": "gopd", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/gopd.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "evalmd README.md", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "version": "1.0.1" + "name": "gopd", + "version": "1.0.1", + "description": "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint --ext=js,mjs .", + "postlint": "evalmd README.md", + "pretest": "npm run lint", + "tests-only": "tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/gopd.git" + }, + "keywords": [ + "ecmascript", + "javascript", + "getownpropertydescriptor", + "property", + "descriptor" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/gopd/issues" + }, + "homepage": "https://github.com/ljharb/gopd#readme", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.0.0", + "aud": "^2.0.1", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "in-publish": "^2.0.1", + "npmignore": "^0.3.0", + "safe-publish-latest": "^2.0.0", + "tape": "^5.6.1" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } } diff --git a/node_modules/has-flag/package.json b/node_modules/has-flag/package.json index 639a8e0..e1eb17a 100644 --- a/node_modules/has-flag/package.json +++ b/node_modules/has-flag/package.json @@ -1,49 +1,23 @@ { - "_from": "has-flag@^3.0.0", - "_id": "has-flag@3.0.0", - "_inBundle": false, - "_integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "_location": "/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "has-flag@^3.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "^3.0.0", - "saveSpec": null, - "fetchSpec": "^3.0.0" - }, - "_requiredBy": [ - "/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "_shasum": "b5d454dc2199ae225699f3467e5a07f3b955bafd", - "_spec": "has-flag@^3.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/supports-color", + "name": "has-flag", + "version": "3.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -63,14 +37,8 @@ "minimist", "optimist" ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/node_modules/has-property-descriptors/package.json b/node_modules/has-property-descriptors/package.json index 5b8e836..7e70218 100644 --- a/node_modules/has-property-descriptors/package.json +++ b/node_modules/has-property-descriptors/package.json @@ -1,105 +1,77 @@ { - "_from": "has-property-descriptors@^1.0.1", - "_id": "has-property-descriptors@1.0.2", - "_inBundle": false, - "_integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "_location": "/has-property-descriptors", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "has-property-descriptors@^1.0.1", - "name": "has-property-descriptors", - "escapedName": "has-property-descriptors", - "rawSpec": "^1.0.1", - "saveSpec": null, - "fetchSpec": "^1.0.1" - }, - "_requiredBy": [ - "/set-function-length" - ], - "_resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "_shasum": "963ed7d071dc7bf5f084c5bfbe0d1b6222586854", - "_spec": "has-property-descriptors@^1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/set-function-length", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/inspect-js/has-property-descriptors/issues" - }, - "bundleDependencies": false, - "dependencies": { - "es-define-property": "^1.0.0" - }, - "deprecated": false, - "description": "Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD.", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4" - }, - "exports": { - ".": "./index.js", - "./package.json": "./package.json" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/inspect-js/has-property-descriptors#readme", - "keywords": [ - "property", - "descriptors", - "has", - "environment", - "env", - "defineProperty", - "getOwnPropertyDescriptor" - ], - "license": "MIT", - "main": "index.js", - "name": "has-property-descriptors", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/inspect-js/has-property-descriptors.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prelint": "evalmd README.md", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "testling": { - "files": "test/index.js" - }, - "version": "1.0.2" + "name": "has-property-descriptors", + "version": "1.0.2", + "description": "Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/has-property-descriptors.git" + }, + "keywords": [ + "property", + "descriptors", + "has", + "environment", + "env", + "defineProperty", + "getOwnPropertyDescriptor" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/has-property-descriptors/issues" + }, + "homepage": "https://github.com/inspect-js/has-property-descriptors#readme", + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4" + }, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "testling": { + "files": "test/index.js" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } } diff --git a/node_modules/has-proto/package.json b/node_modules/has-proto/package.json index 4b057e0..9d37e4e 100644 --- a/node_modules/has-proto/package.json +++ b/node_modules/has-proto/package.json @@ -1,106 +1,78 @@ { - "_from": "has-proto@^1.0.1", - "_id": "has-proto@1.0.3", - "_inBundle": false, - "_integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "_location": "/has-proto", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "has-proto@^1.0.1", - "name": "has-proto", - "escapedName": "has-proto", - "rawSpec": "^1.0.1", - "saveSpec": null, - "fetchSpec": "^1.0.1" - }, - "_requiredBy": [ - "/get-intrinsic" - ], - "_resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "_shasum": "b31ddfe9b0e6e9914536a6ab286426d0214f77fd", - "_spec": "has-proto@^1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/get-intrinsic", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/inspect-js/has-proto/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "@types/tape": "^5.6.4", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "eslint": "=8.8.0", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.5", - "typescript": "next" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./package.json": "./package.json" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/inspect-js/has-proto#readme", - "keywords": [ - "prototype", - "proto", - "set", - "get", - "__proto__", - "getPrototypeOf", - "setPrototypeOf", - "has" - ], - "license": "MIT", - "main": "index.js", - "name": "has-proto", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/inspect-js/has-proto.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "tsc -p .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "testling": { - "files": "test/index.js" - }, - "version": "1.0.3" + "name": "has-proto", + "version": "1.0.3", + "description": "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p .", + "pretest": "npm run lint", + "tests-only": "tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/has-proto.git" + }, + "keywords": [ + "prototype", + "proto", + "set", + "get", + "__proto__", + "getPrototypeOf", + "setPrototypeOf", + "has" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/has-proto/issues" + }, + "homepage": "https://github.com/inspect-js/has-proto#readme", + "testling": { + "files": "test/index.js" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.5", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } } diff --git a/node_modules/has-symbols/package.json b/node_modules/has-symbols/package.json index 949f0e0..fe7004a 100644 --- a/node_modules/has-symbols/package.json +++ b/node_modules/has-symbols/package.json @@ -1,126 +1,101 @@ { - "_from": "has-symbols@^1.0.3", - "_id": "has-symbols@1.0.3", - "_inBundle": false, - "_integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "_location": "/has-symbols", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "has-symbols@^1.0.3", - "name": "has-symbols", - "escapedName": "has-symbols", - "rawSpec": "^1.0.3", - "saveSpec": null, - "fetchSpec": "^1.0.3" - }, - "_requiredBy": [ - "/get-intrinsic" - ], - "_resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "_shasum": "bb7b2c4349251dce87b125f7bdf874aa7c8b39f8", - "_spec": "has-symbols@^1.0.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/get-intrinsic", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com", - "url": "http://ljharb.codes" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/has-symbols/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jordan Harband", - "email": "ljharb@gmail.com", - "url": "http://ljharb.codes" - } - ], - "deprecated": false, - "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.", - "devDependencies": { - "@ljharb/eslint-config": "^20.2.3", - "aud": "^2.0.0", - "auto-changelog": "^2.4.0", - "core-js": "^2.6.12", - "eslint": "=8.8.0", - "get-own-property-symbols": "^0.9.5", - "nyc": "^10.3.2", - "safe-publish-latest": "^2.0.0", - "tape": "^5.5.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "greenkeeper": { - "ignore": [ - "core-js" - ] - }, - "homepage": "https://github.com/ljharb/has-symbols#readme", - "keywords": [ - "Symbol", - "symbols", - "typeof", - "sham", - "polyfill", - "native", - "core-js", - "ES6" - ], - "license": "MIT", - "main": "index.js", - "name": "has-symbols", - "repository": { - "type": "git", - "url": "git://github.com/inspect-js/has-symbols.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run --silent lint", - "test": "npm run tests-only", - "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", - "test:shams:corejs": "nyc node test/shams/core-js.js", - "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js", - "test:staging": "nyc node --harmony --es-staging test", - "test:stock": "nyc node test", - "tests-only": "npm run test:stock && npm run test:staging && npm run test:shams", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "testling": { - "files": "test/index.js", - "browsers": [ - "iexplore/6.0..latest", - "firefox/3.0..6.0", - "firefox/15.0..latest", - "firefox/nightly", - "chrome/4.0..10.0", - "chrome/20.0..latest", - "chrome/canary", - "opera/10.0..latest", - "opera/next", - "safari/4.0..latest", - "ipad/6.0..latest", - "iphone/6.0..latest", - "android-browser/4.2" - ] - }, - "version": "1.0.3" + "name": "has-symbols", + "version": "1.0.3", + "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.", + "main": "index.js", + "scripts": { + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run --silent lint", + "test": "npm run tests-only", + "posttest": "aud --production", + "tests-only": "npm run test:stock && npm run test:staging && npm run test:shams", + "test:stock": "nyc node test", + "test:staging": "nyc node --harmony --es-staging test", + "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", + "test:shams:corejs": "nyc node test/shams/core-js.js", + "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js", + "lint": "eslint --ext=js,mjs .", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/has-symbols.git" + }, + "keywords": [ + "Symbol", + "symbols", + "typeof", + "sham", + "polyfill", + "native", + "core-js", + "ES6" + ], + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/has-symbols/issues" + }, + "homepage": "https://github.com/ljharb/has-symbols#readme", + "devDependencies": { + "@ljharb/eslint-config": "^20.2.3", + "aud": "^2.0.0", + "auto-changelog": "^2.4.0", + "core-js": "^2.6.12", + "eslint": "=8.8.0", + "get-own-property-symbols": "^0.9.5", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.5.2" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "greenkeeper": { + "ignore": [ + "core-js" + ] + } } diff --git a/node_modules/hasown/package.json b/node_modules/hasown/package.json index 87b8a76..1b03e9d 100644 --- a/node_modules/hasown/package.json +++ b/node_modules/hasown/package.json @@ -1,117 +1,89 @@ { - "_from": "hasown@^2.0.0", - "_id": "hasown@2.0.1", - "_inBundle": false, - "_integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", - "_location": "/hasown", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "hasown@^2.0.0", - "name": "hasown", - "escapedName": "hasown", - "rawSpec": "^2.0.0", - "saveSpec": null, - "fetchSpec": "^2.0.0" - }, - "_requiredBy": [ - "/get-intrinsic" - ], - "_resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", - "_shasum": "26f48f039de2c0f8d3356c223fb8d50253519faa", - "_spec": "hasown@^2.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/get-intrinsic", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/inspect-js/hasOwn/issues" - }, - "bundleDependencies": false, - "dependencies": { - "function-bind": "^1.1.2" - }, - "deprecated": false, - "description": "A robust, ES3 compatible, \"has own property\" predicate.", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "@types/function-bind": "^1.1.10", - "@types/mock-property": "^1.0.2", - "@types/tape": "^5.6.4", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "in-publish": "^2.0.1", - "mock-property": "^1.0.3", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4", - "typescript": "next" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./package.json": "./package.json" - }, - "homepage": "https://github.com/inspect-js/hasOwn#readme", - "keywords": [ - "has", - "hasOwnProperty", - "hasOwn", - "has-own", - "own", - "has", - "property", - "in", - "javascript", - "ecmascript" - ], - "license": "MIT", - "main": "index.js", - "name": "hasown", - "publishConfig": { - "ignore": [ - ".github/workflows", - "test" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/inspect-js/hasOwn.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "npm run tsc", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prelint": "evalmd README.md", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "tsc": "tsc -p .", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "testling": { - "files": "test/index.js" - }, - "types": "index.d.ts", - "version": "2.0.1" + "name": "hasown", + "version": "2.0.1", + "description": "A robust, ES3 compatible, \"has own property\" predicate.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "types": "index.d.ts", + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "npm run tsc", + "pretest": "npm run lint", + "tsc": "tsc -p .", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/hasOwn.git" + }, + "keywords": [ + "has", + "hasOwnProperty", + "hasOwn", + "has-own", + "own", + "has", + "property", + "in", + "javascript", + "ecmascript" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/hasOwn/issues" + }, + "homepage": "https://github.com/inspect-js/hasOwn#readme", + "dependencies": { + "function-bind": "^1.1.2" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/function-bind": "^1.1.10", + "@types/mock-property": "^1.0.2", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "in-publish": "^2.0.1", + "mock-property": "^1.0.3", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "testling": { + "files": "test/index.js" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test" + ] + } } diff --git a/node_modules/http-errors/package.json b/node_modules/http-errors/package.json index ca6db9c..4cb6d7e 100644 --- a/node_modules/http-errors/package.json +++ b/node_modules/http-errors/package.json @@ -1,51 +1,14 @@ { - "_from": "http-errors@2.0.0", - "_id": "http-errors@2.0.0", - "_inBundle": false, - "_integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "_location": "/http-errors", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "http-errors@2.0.0", - "name": "http-errors", - "escapedName": "http-errors", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/body-parser", - "/express", - "/express/body-parser", - "/express/raw-body", - "/raw-body", - "/send" - ], - "_resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "_shasum": "b7774a1486ef73cf7667ac9ae0858c012c57b9d3", - "_spec": "http-errors@2.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - }, - "bugs": { - "url": "https://github.com/jshttp/http-errors/issues" - }, - "bundleDependencies": false, + "name": "http-errors", + "description": "Create HTTP error objects", + "version": "2.0.0", + "author": "Jonathan Ong (http://jongleberry.com)", "contributors": [ - { - "name": "Alan Plum", - "email": "me@pluma.io" - }, - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - } + "Alan Plum ", + "Douglas Christopher Wilson " ], + "license": "MIT", + "repository": "jshttp/http-errors", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -53,8 +16,6 @@ "statuses": "2.0.1", "toidentifier": "1.0.1" }, - "deprecated": false, - "description": "Create HTTP error objects", "devDependencies": { "eslint": "7.32.0", "eslint-config-standard": "14.1.1", @@ -69,23 +30,6 @@ "engines": { "node": ">= 0.8" }, - "files": [ - "index.js", - "HISTORY.md", - "LICENSE", - "README.md" - ], - "homepage": "https://github.com/jshttp/http-errors#readme", - "keywords": [ - "http", - "error" - ], - "license": "MIT", - "name": "http-errors", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/http-errors.git" - }, "scripts": { "lint": "eslint . && node ./scripts/lint-readme-list.js", "test": "mocha --reporter spec --bail", @@ -93,5 +37,14 @@ "test-cov": "nyc --reporter=html --reporter=text npm test", "version": "node scripts/version-history.js && git add HISTORY.md" }, - "version": "2.0.0" + "keywords": [ + "http", + "error" + ], + "files": [ + "index.js", + "HISTORY.md", + "LICENSE", + "README.md" + ] } diff --git a/node_modules/iconv-lite/package.json b/node_modules/iconv-lite/package.json index 3af7e4a..a7c74fc 100644 --- a/node_modules/iconv-lite/package.json +++ b/node_modules/iconv-lite/package.json @@ -1,79 +1,46 @@ { - "_from": "iconv-lite@0.4.24", - "_id": "iconv-lite@0.4.24", - "_inBundle": false, - "_integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "_location": "/iconv-lite", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "iconv-lite@0.4.24", "name": "iconv-lite", - "escapedName": "iconv-lite", - "rawSpec": "0.4.24", - "saveSpec": null, - "fetchSpec": "0.4.24" - }, - "_requiredBy": [ - "/body-parser", - "/express/body-parser", - "/express/raw-body", - "/raw-body" - ], - "_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "_shasum": "2022b4b25fbddc21d2f524974a474aafe733908b", - "_spec": "iconv-lite@0.4.24", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "Alexander Shtuchkin", - "email": "ashtuchkin@gmail.com" - }, - "browser": { - "./lib/extend-node": false, - "./lib/streams": false - }, - "bugs": { - "url": "https://github.com/ashtuchkin/iconv-lite/issues" - }, - "bundleDependencies": false, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "deprecated": false, - "description": "Convert character encodings in pure javascript.", - "devDependencies": { - "async": "*", - "errto": "*", - "iconv": "*", - "istanbul": "*", - "mocha": "^3.1.0", - "request": "~2.87.0", - "semver": "*", - "unorm": "*" - }, - "engines": { - "node": ">=0.10.0" - }, - "homepage": "https://github.com/ashtuchkin/iconv-lite", - "keywords": [ - "iconv", - "convert", - "charset", - "icu" - ], - "license": "MIT", - "main": "./lib/index.js", - "name": "iconv-lite", - "repository": { - "type": "git", - "url": "git://github.com/ashtuchkin/iconv-lite.git" - }, - "scripts": { - "coverage": "istanbul cover _mocha -- --grep .", - "coverage-open": "open coverage/lcov-report/index.html", - "test": "mocha --reporter spec --grep ." - }, - "typings": "./lib/index.d.ts", - "version": "0.4.24" + "description": "Convert character encodings in pure javascript.", + "version": "0.4.24", + "license": "MIT", + "keywords": [ + "iconv", + "convert", + "charset", + "icu" + ], + "author": "Alexander Shtuchkin ", + "main": "./lib/index.js", + "typings": "./lib/index.d.ts", + "homepage": "https://github.com/ashtuchkin/iconv-lite", + "bugs": "https://github.com/ashtuchkin/iconv-lite/issues", + "repository": { + "type": "git", + "url": "git://github.com/ashtuchkin/iconv-lite.git" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "coverage": "istanbul cover _mocha -- --grep .", + "coverage-open": "open coverage/lcov-report/index.html", + "test": "mocha --reporter spec --grep ." + }, + "browser": { + "./lib/extend-node": false, + "./lib/streams": false + }, + "devDependencies": { + "mocha": "^3.1.0", + "request": "~2.87.0", + "unorm": "*", + "errto": "*", + "async": "*", + "istanbul": "*", + "semver": "*", + "iconv": "*" + }, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + } } diff --git a/node_modules/ignore-by-default/package.json b/node_modules/ignore-by-default/package.json index c5b502a..38e0d2b 100644 --- a/node_modules/ignore-by-default/package.json +++ b/node_modules/ignore-by-default/package.json @@ -1,45 +1,18 @@ { - "_from": "ignore-by-default@^1.0.1", - "_id": "ignore-by-default@1.0.1", - "_inBundle": false, - "_integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "_location": "/ignore-by-default", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "ignore-by-default@^1.0.1", - "name": "ignore-by-default", - "escapedName": "ignore-by-default", - "rawSpec": "^1.0.1", - "saveSpec": null, - "fetchSpec": "^1.0.1" - }, - "_requiredBy": [ - "/nodemon" - ], - "_resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "_shasum": "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09", - "_spec": "ignore-by-default@^1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Mark Wubben", - "url": "https://novemberborn.net/" - }, - "bugs": { - "url": "https://github.com/novemberborn/ignore-by-default/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ignore-by-default", + "version": "1.0.1", "description": "A list of directories you should ignore by default", - "devDependencies": { - "figures": "^1.4.0", - "standard": "^6.0.4" - }, + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/novemberborn/ignore-by-default#readme", + "scripts": { + "test": "standard && node test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/ignore-by-default.git" + }, "keywords": [ "ignore", "chokidar", @@ -48,15 +21,14 @@ "glob", "pattern" ], + "author": "Mark Wubben (https://novemberborn.net/)", "license": "ISC", - "main": "index.js", - "name": "ignore-by-default", - "repository": { - "type": "git", - "url": "git+https://github.com/novemberborn/ignore-by-default.git" + "bugs": { + "url": "https://github.com/novemberborn/ignore-by-default/issues" }, - "scripts": { - "test": "standard && node test.js" - }, - "version": "1.0.1" + "homepage": "https://github.com/novemberborn/ignore-by-default#readme", + "devDependencies": { + "figures": "^1.4.0", + "standard": "^6.0.4" + } } diff --git a/node_modules/inherits/package.json b/node_modules/inherits/package.json index 9529095..37b4366 100644 --- a/node_modules/inherits/package.json +++ b/node_modules/inherits/package.json @@ -1,44 +1,7 @@ { - "_from": "inherits@2.0.4", - "_id": "inherits@2.0.4", - "_inBundle": false, - "_integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "_location": "/inherits", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "inherits@2.0.4", - "name": "inherits", - "escapedName": "inherits", - "rawSpec": "2.0.4", - "saveSpec": null, - "fetchSpec": "2.0.4" - }, - "_requiredBy": [ - "/concat-stream", - "/http-errors", - "/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "_shasum": "0fa2c64f932917c3433a0ded55363aae37416b7c", - "_spec": "inherits@2.0.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/http-errors", - "browser": "./inherits_browser.js", - "bugs": { - "url": "https://github.com/isaacs/inherits/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "inherits", "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "devDependencies": { - "tap": "^14.2.4" - }, - "files": [ - "inherits.js", - "inherits_browser.js" - ], - "homepage": "https://github.com/isaacs/inherits#readme", + "version": "2.0.4", "keywords": [ "inheritance", "class", @@ -49,15 +12,18 @@ "browser", "browserify" ], - "license": "ISC", "main": "./inherits.js", - "name": "inherits", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/inherits.git" - }, + "browser": "./inherits_browser.js", + "repository": "git://github.com/isaacs/inherits", + "license": "ISC", "scripts": { "test": "tap" }, - "version": "2.0.4" + "devDependencies": { + "tap": "^14.2.4" + }, + "files": [ + "inherits.js", + "inherits_browser.js" + ] } diff --git a/node_modules/ip-address/package.json b/node_modules/ip-address/package.json index 72cd7a4..0543fc4 100644 --- a/node_modules/ip-address/package.json +++ b/node_modules/ip-address/package.json @@ -1,42 +1,60 @@ { - "_from": "ip-address@^9.0.5", - "_id": "ip-address@9.0.5", - "_inBundle": false, - "_integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", - "_location": "/ip-address", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "ip-address@^9.0.5", - "name": "ip-address", - "escapedName": "ip-address", - "rawSpec": "^9.0.5", - "saveSpec": null, - "fetchSpec": "^9.0.5" - }, - "_requiredBy": [ - "/socks" + "name": "ip-address", + "description": "A library for parsing IPv4 and IPv6 IP addresses in node and the browser.", + "keywords": [ + "ipv6", + "ipv4", + "browser", + "validation" ], - "_resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", - "_shasum": "117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a", - "_spec": "ip-address@^9.0.5", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/socks", - "author": { - "name": "Beau Gunderson", - "email": "beau@beaugunderson.com", - "url": "https://beaugunderson.com/" + "version": "9.0.5", + "author": "Beau Gunderson (https://beaugunderson.com/)", + "license": "MIT", + "main": "dist/ip-address.js", + "types": "dist/ip-address.d.ts", + "scripts": { + "docs": "documentation build --github --output docs --format html ./ip-address.js", + "build": "rm -rf dist; mkdir dist; tsc", + "prepack": "npm run build", + "release": "release-it", + "test-ci": "nyc mocha", + "test": "mocha", + "watch": "mocha --watch" }, - "bugs": { - "url": "https://github.com/beaugunderson/ip-address/issues" + "nyc": { + "extension": [ + ".ts" + ], + "exclude": [ + "**/*.d.ts", + ".eslintrc.js", + "coverage/", + "dist/", + "test/", + "tmp/" + ], + "reporter": [ + "html", + "lcov", + "text" + ], + "all": true + }, + "engines": { + "node": ">= 12" + }, + "files": [ + "src", + "dist" + ], + "repository": { + "type": "git", + "url": "git://github.com/beaugunderson/ip-address.git" }, - "bundleDependencies": false, "dependencies": { "jsbn": "1.1.0", "sprintf-js": "^1.1.3" }, - "deprecated": false, - "description": "A library for parsing IPv4 and IPv6 IP addresses in node and the browser.", "devDependencies": { "@types/chai": "^4.2.18", "@types/jsbn": "^1.2.31", @@ -65,56 +83,5 @@ "source-map-support": "^0.5.19", "ts-node": "^10.0.0", "typescript": "^5.2.2" - }, - "engines": { - "node": ">= 12" - }, - "files": [ - "src", - "dist" - ], - "homepage": "https://github.com/beaugunderson/ip-address#readme", - "keywords": [ - "ipv6", - "ipv4", - "browser", - "validation" - ], - "license": "MIT", - "main": "dist/ip-address.js", - "name": "ip-address", - "nyc": { - "extension": [ - ".ts" - ], - "exclude": [ - "**/*.d.ts", - ".eslintrc.js", - "coverage/", - "dist/", - "test/", - "tmp/" - ], - "reporter": [ - "html", - "lcov", - "text" - ], - "all": true - }, - "repository": { - "type": "git", - "url": "git://github.com/beaugunderson/ip-address.git" - }, - "scripts": { - "build": "rm -rf dist; mkdir dist; tsc", - "docs": "documentation build --github --output docs --format html ./ip-address.js", - "prepack": "npm run build", - "release": "release-it", - "test": "mocha", - "test-ci": "nyc mocha", - "watch": "mocha --watch" - }, - "types": "dist/ip-address.d.ts", - "version": "9.0.5" + } } diff --git a/node_modules/ipaddr.js/package.json b/node_modules/ipaddr.js/package.json index 5bb3bea..f4d3547 100644 --- a/node_modules/ipaddr.js/package.json +++ b/node_modules/ipaddr.js/package.json @@ -1,70 +1,35 @@ { - "_from": "ipaddr.js@1.9.1", - "_id": "ipaddr.js@1.9.1", - "_inBundle": false, - "_integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "_location": "/ipaddr.js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ipaddr.js@1.9.1", - "name": "ipaddr.js", - "escapedName": "ipaddr.js", - "rawSpec": "1.9.1", - "saveSpec": null, - "fetchSpec": "1.9.1" - }, - "_requiredBy": [ - "/proxy-addr" - ], - "_resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "_shasum": "bff38543eeb8984825079ff3a2a8e6cbd46781b3", - "_spec": "ipaddr.js@1.9.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/proxy-addr", - "author": { - "name": "whitequark", - "email": "whitequark@whitequark.org" - }, - "bugs": { - "url": "https://github.com/whitequark/ipaddr.js/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "ipaddr.js", "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", + "version": "1.9.1", + "author": "whitequark ", + "directories": { + "lib": "./lib" + }, + "dependencies": {}, "devDependencies": { "coffee-script": "~1.12.6", "nodeunit": "^0.11.3", "uglify-js": "~3.0.19" }, - "directories": { - "lib": "./lib" - }, - "engines": { - "node": ">= 0.10" + "scripts": { + "test": "cake build test" }, "files": [ "lib/", "LICENSE", "ipaddr.min.js" ], - "homepage": "https://github.com/whitequark/ipaddr.js#readme", "keywords": [ "ip", "ipv4", "ipv6" ], - "license": "MIT", + "repository": "git://github.com/whitequark/ipaddr.js", "main": "./lib/ipaddr.js", - "name": "ipaddr.js", - "repository": { - "type": "git", - "url": "git://github.com/whitequark/ipaddr.js.git" + "engines": { + "node": ">= 0.10" }, - "scripts": { - "test": "cake build test" - }, - "types": "./lib/ipaddr.js.d.ts", - "version": "1.9.1" + "license": "MIT", + "types": "./lib/ipaddr.js.d.ts" } diff --git a/node_modules/is-binary-path/package.json b/node_modules/is-binary-path/package.json index 6d358f2..a8d005a 100644 --- a/node_modules/is-binary-path/package.json +++ b/node_modules/is-binary-path/package.json @@ -1,72 +1,40 @@ { - "_from": "is-binary-path@~2.1.0", - "_id": "is-binary-path@2.1.0", - "_inBundle": false, - "_integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "_location": "/is-binary-path", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "is-binary-path@~2.1.0", - "name": "is-binary-path", - "escapedName": "is-binary-path", - "rawSpec": "~2.1.0", - "saveSpec": null, - "fetchSpec": "~2.1.0" - }, - "_requiredBy": [ - "/chokidar" - ], - "_resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "_shasum": "ea1f7f3b80f064236e83470f86c09c254fb45b09", - "_spec": "is-binary-path@~2.1.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/chokidar", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-binary-path/issues" - }, - "bundleDependencies": false, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "deprecated": false, - "description": "Check if a file path is a binary file", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-binary-path#readme", - "keywords": [ - "binary", - "extensions", - "extension", - "file", - "path", - "check", - "detect", - "is" - ], - "license": "MIT", - "name": "is-binary-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-binary-path.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" + "name": "is-binary-path", + "version": "2.1.0", + "description": "Check if a file path is a binary file", + "license": "MIT", + "repository": "sindresorhus/is-binary-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "binary", + "extensions", + "extension", + "file", + "path", + "check", + "detect", + "is" + ], + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } diff --git a/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json index b55b366..7a90836 100644 --- a/node_modules/is-extglob/package.json +++ b/node_modules/is-extglob/package.json @@ -1,48 +1,28 @@ { - "_from": "is-extglob@^2.1.1", - "_id": "is-extglob@2.1.1", - "_inBundle": false, - "_integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "_location": "/is-extglob", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "is-extglob@^2.1.1", - "name": "is-extglob", - "escapedName": "is-extglob", - "rawSpec": "^2.1.1", - "saveSpec": null, - "fetchSpec": "^2.1.1" - }, - "_requiredBy": [ - "/is-glob" - ], - "_resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "_shasum": "a88c02535791f02ed37c76a1b9ea9773c833f8c2", - "_spec": "is-extglob@^2.1.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/is-glob", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "is-extglob", + "description": "Returns true if a string has an extglob.", + "version": "2.1.1", + "homepage": "https://github.com/jonschlinkert/is-extglob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/is-extglob", "bugs": { "url": "https://github.com/jonschlinkert/is-extglob/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Returns true if a string has an extglob.", + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-extglob", "keywords": [ "bash", "braces", @@ -62,16 +42,6 @@ "string", "test" ], - "license": "MIT", - "main": "index.js", - "name": "is-extglob", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-extglob.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -95,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "2.1.1" + } } diff --git a/node_modules/is-glob/package.json b/node_modules/is-glob/package.json index fc905fe..858af03 100644 --- a/node_modules/is-glob/package.json +++ b/node_modules/is-glob/package.json @@ -1,66 +1,36 @@ { - "_from": "is-glob@~4.0.1", - "_id": "is-glob@4.0.3", - "_inBundle": false, - "_integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "_location": "/is-glob", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "is-glob@~4.0.1", - "name": "is-glob", - "escapedName": "is-glob", - "rawSpec": "~4.0.1", - "saveSpec": null, - "fetchSpec": "~4.0.1" - }, - "_requiredBy": [ - "/chokidar", - "/glob-parent" + "name": "is-glob", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "version": "4.0.3", + "homepage": "https://github.com/micromatch/is-glob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://twitter.com/doowb)", + "Daniel Perez (https://tuvistavie.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "_shasum": "64f61e42cbbb2eec2071a9dac0b28ba1e65d5084", - "_spec": "is-glob@~4.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/chokidar", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/is-glob", "bugs": { "url": "https://github.com/micromatch/is-glob/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Daniel Perez", - "url": "https://tuvistavie.com" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha && node benchmark.js" + }, "dependencies": { "is-extglob": "^2.1.1" }, - "deprecated": false, - "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/is-glob", "keywords": [ "bash", "braces", @@ -80,16 +50,6 @@ "string", "test" ], - "license": "MIT", - "main": "index.js", - "name": "is-glob", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/is-glob.git" - }, - "scripts": { - "test": "mocha && node benchmark.js" - }, "verb": { "layout": "default", "plugins": [ @@ -117,6 +77,5 @@ "verb", "vinyl" ] - }, - "version": "4.0.3" + } } diff --git a/node_modules/is-number/package.json b/node_modules/is-number/package.json index b7610d6..3715072 100644 --- a/node_modules/is-number/package.json +++ b/node_modules/is-number/package.json @@ -1,64 +1,35 @@ { - "_from": "is-number@^7.0.0", - "_id": "is-number@7.0.0", - "_inBundle": false, - "_integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "_location": "/is-number", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "is-number@^7.0.0", - "name": "is-number", - "escapedName": "is-number", - "rawSpec": "^7.0.0", - "saveSpec": null, - "fetchSpec": "^7.0.0" - }, - "_requiredBy": [ - "/to-regex-range" + "name": "is-number", + "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "version": "7.0.0", + "homepage": "https://github.com/jonschlinkert/is-number", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Olsten Larck (https://i.am.charlike.online)", + "Rouven Weßling (www.rouvenwessling.de)" ], - "_resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "_shasum": "7535345b896734d5f80c4d06c50955527a14f12b", - "_spec": "is-number@^7.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/to-regex-range", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Olsten Larck", - "url": "https://i.am.charlike.online" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - } + "license": "MIT", + "files": [ + "index.js" ], - "deprecated": false, - "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "main": "index.js", + "engines": { + "node": ">=0.12.0" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "ansi": "^0.3.1", "benchmark": "^2.1.4", "gulp-format-md": "^1.0.0", "mocha": "^3.5.3" }, - "engines": { - "node": ">=0.12.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-number", "keywords": [ "cast", "check", @@ -87,16 +58,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.js", - "name": "is-number", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-number.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -117,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } diff --git a/node_modules/isarray/package.json b/node_modules/isarray/package.json index 4e5ca9b..1a4317a 100644 --- a/node_modules/isarray/package.json +++ b/node_modules/isarray/package.json @@ -1,58 +1,28 @@ { - "_from": "isarray@~1.0.0", - "_id": "isarray@1.0.0", - "_inBundle": false, - "_integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "_location": "/isarray", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "isarray@~1.0.0", - "name": "isarray", - "escapedName": "isarray", - "rawSpec": "~1.0.0", - "saveSpec": null, - "fetchSpec": "~1.0.0" - }, - "_requiredBy": [ - "/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "_shasum": "bb935d48582cba168c06834957a54a3e07124f11", - "_spec": "isarray@~1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/readable-stream", - "author": { - "name": "Julian Gruber", - "email": "mail@juliangruber.com", - "url": "http://juliangruber.com" - }, - "bugs": { - "url": "https://github.com/juliangruber/isarray/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "isarray", "description": "Array#isArray for older browsers", + "version": "1.0.0", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/isarray.git" + }, + "homepage": "https://github.com/juliangruber/isarray", + "main": "index.js", + "dependencies": {}, "devDependencies": { "tape": "~2.13.4" }, - "homepage": "https://github.com/juliangruber/isarray", "keywords": [ "browser", "isarray", "array" ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, "license": "MIT", - "main": "index.js", - "name": "isarray", - "repository": { - "type": "git", - "url": "git://github.com/juliangruber/isarray.git" - }, - "scripts": { - "test": "tape test.js" - }, "testling": { "files": "test.js", "browsers": [ @@ -69,5 +39,7 @@ "android-browser/4.2..latest" ] }, - "version": "1.0.0" + "scripts": { + "test": "tape test.js" + } } diff --git a/node_modules/jsbn/package.json b/node_modules/jsbn/package.json index 729e0db..97b137c 100644 --- a/node_modules/jsbn/package.json +++ b/node_modules/jsbn/package.json @@ -1,52 +1,21 @@ { - "_from": "jsbn@1.1.0", - "_id": "jsbn@1.1.0", - "_inBundle": false, - "_integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "_location": "/jsbn", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jsbn@1.1.0", - "name": "jsbn", - "escapedName": "jsbn", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/ip-address" - ], - "_resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "_shasum": "b01307cb29b618a1ed26ec79e911f803c4da0040", - "_spec": "jsbn@1.1.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/ip-address", - "author": { - "name": "Tom Wu" - }, - "bugs": { - "url": "https://github.com/andyperlitch/jsbn/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jsbn", + "version": "1.1.0", "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", - "homepage": "https://github.com/andyperlitch/jsbn#readme", + "main": "index.js", + "scripts": { + "test": "mocha test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/andyperlitch/jsbn.git" + }, "keywords": [ "biginteger", "bignumber", "big", "integer" ], - "license": "MIT", - "main": "index.js", - "name": "jsbn", - "repository": { - "type": "git", - "url": "git+https://github.com/andyperlitch/jsbn.git" - }, - "scripts": { - "test": "mocha test.js" - }, - "version": "1.1.0" + "author": "Tom Wu", + "license": "MIT" } diff --git a/node_modules/jsonwebtoken/node_modules/ms/package.json b/node_modules/jsonwebtoken/node_modules/ms/package.json index 680dcfd..4997189 100644 --- a/node_modules/jsonwebtoken/node_modules/ms/package.json +++ b/node_modules/jsonwebtoken/node_modules/ms/package.json @@ -1,40 +1,16 @@ { - "_from": "ms@^2.1.1", - "_id": "ms@2.1.3", - "_inBundle": false, - "_integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "_location": "/jsonwebtoken/ms", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "ms@^2.1.1", - "name": "ms", - "escapedName": "ms", - "rawSpec": "^2.1.1", - "saveSpec": null, - "fetchSpec": "^2.1.1" - }, - "_requiredBy": [ - "/jsonwebtoken" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "_shasum": "574c8138ce1d2b5861f0b44579dbadd60c6615b2", - "_spec": "ms@^2.1.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/jsonwebtoken", - "bugs": { - "url": "https://github.com/vercel/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ms", + "version": "2.1.3", "description": "Tiny millisecond conversion utility", - "devDependencies": { - "eslint": "4.18.2", - "expect.js": "0.3.1", - "husky": "0.14.3", - "lint-staged": "5.0.0", - "mocha": "4.0.1", - "prettier": "2.0.5" + "repository": "vercel/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -43,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/vercel/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -55,16 +26,13 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/vercel/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.1.3" + "license": "MIT", + "devDependencies": { + "eslint": "4.18.2", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1", + "prettier": "2.0.5" + } } diff --git a/node_modules/jsonwebtoken/package.json b/node_modules/jsonwebtoken/package.json index ded62aa..4f1e4e9 100644 --- a/node_modules/jsonwebtoken/package.json +++ b/node_modules/jsonwebtoken/package.json @@ -1,70 +1,8 @@ { - "_from": "jsonwebtoken@9.0.0", - "_id": "jsonwebtoken@9.0.0", - "_inBundle": false, - "_integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", - "_location": "/jsonwebtoken", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jsonwebtoken@9.0.0", - "name": "jsonwebtoken", - "escapedName": "jsonwebtoken", - "rawSpec": "9.0.0", - "saveSpec": null, - "fetchSpec": "9.0.0" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", - "_shasum": "d0faf9ba1cc3a56255fe49c0961a67e520c1926d", - "_spec": "jsonwebtoken@9.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "auth0" - }, - "bugs": { - "url": "https://github.com/auth0/node-jsonwebtoken/issues" - }, - "bundleDependencies": false, - "dependencies": { - "jws": "^3.2.2", - "lodash": "^4.17.21", - "ms": "^2.1.1", - "semver": "^7.3.8" - }, - "deprecated": false, - "description": "JSON Web Token implementation (symmetric and asymmetric)", - "devDependencies": { - "atob": "^2.1.2", - "chai": "^4.1.2", - "conventional-changelog": "~1.1.0", - "cost-of-modules": "^1.0.1", - "eslint": "^4.19.1", - "mocha": "^5.2.0", - "nsp": "^2.6.2", - "nyc": "^11.9.0", - "sinon": "^6.0.0" - }, - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "files": [ - "lib", - "decode.js", - "sign.js", - "verify.js" - ], - "homepage": "https://github.com/auth0/node-jsonwebtoken#readme", - "keywords": [ - "jwt" - ], - "license": "MIT", - "main": "index.js", "name": "jsonwebtoken", + "version": "9.0.0", + "description": "JSON Web Token implementation (symmetric and asymmetric)", + "main": "index.js", "nyc": { "check-coverage": true, "lines": 95, @@ -80,14 +18,48 @@ "text-summary" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/auth0/node-jsonwebtoken.git" - }, "scripts": { - "coverage": "nyc mocha --use_strict", "lint": "eslint .", + "coverage": "nyc mocha --use_strict", "test": "npm run lint && npm run coverage && cost-of-modules" }, - "version": "9.0.0" + "repository": { + "type": "git", + "url": "https://github.com/auth0/node-jsonwebtoken" + }, + "keywords": [ + "jwt" + ], + "author": "auth0", + "license": "MIT", + "bugs": { + "url": "https://github.com/auth0/node-jsonwebtoken/issues" + }, + "dependencies": { + "jws": "^3.2.2", + "lodash": "^4.17.21", + "ms": "^2.1.1", + "semver": "^7.3.8" + }, + "devDependencies": { + "atob": "^2.1.2", + "chai": "^4.1.2", + "conventional-changelog": "~1.1.0", + "cost-of-modules": "^1.0.1", + "eslint": "^4.19.1", + "mocha": "^5.2.0", + "nsp": "^2.6.2", + "nyc": "^11.9.0", + "sinon": "^6.0.0" + }, + "engines": { + "npm": ">=6", + "node": ">=12" + }, + "files": [ + "lib", + "decode.js", + "sign.js", + "verify.js" + ] } diff --git a/node_modules/jwa/package.json b/node_modules/jwa/package.json index ab1ee45..0777d53 100644 --- a/node_modules/jwa/package.json +++ b/node_modules/jwa/package.json @@ -1,52 +1,29 @@ { - "_from": "jwa@^1.4.1", - "_id": "jwa@1.4.1", - "_inBundle": false, - "_integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "_location": "/jwa", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "jwa@^1.4.1", - "name": "jwa", - "escapedName": "jwa", - "rawSpec": "^1.4.1", - "saveSpec": null, - "fetchSpec": "^1.4.1" + "name": "jwa", + "version": "1.4.1", + "description": "JWA implementation (supports all JWS algorithms)", + "main": "index.js", + "directories": { + "test": "test" }, - "_requiredBy": [ - "/jws" - ], - "_resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "_shasum": "743c32985cb9e98655530d53641b66c8645b039a", - "_spec": "jwa@^1.4.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/jws", - "author": { - "name": "Brian J. Brennan", - "email": "brianloveswords@gmail.com" - }, - "bugs": { - "url": "https://github.com/brianloveswords/node-jwa/issues" - }, - "bundleDependencies": false, "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" }, - "deprecated": false, - "description": "JWA implementation (supports all JWS algorithms)", "devDependencies": { "base64url": "^2.0.0", "jwk-to-pem": "^2.0.1", "semver": "4.3.6", "tap": "6.2.0" }, - "directories": { - "test": "test" + "scripts": { + "test": "make test" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianloveswords/node-jwa.git" }, - "homepage": "https://github.com/brianloveswords/node-jwa#readme", "keywords": [ "jwa", "jws", @@ -55,15 +32,6 @@ "ecdsa", "hmac" ], - "license": "MIT", - "main": "index.js", - "name": "jwa", - "repository": { - "type": "git", - "url": "git://github.com/brianloveswords/node-jwa.git" - }, - "scripts": { - "test": "make test" - }, - "version": "1.4.1" + "author": "Brian J. Brennan ", + "license": "MIT" } diff --git a/node_modules/jws/package.json b/node_modules/jws/package.json index 52edd7c..3fb2837 100644 --- a/node_modules/jws/package.json +++ b/node_modules/jws/package.json @@ -1,64 +1,34 @@ { - "_from": "jws@^3.2.2", - "_id": "jws@3.2.2", - "_inBundle": false, - "_integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "_location": "/jws", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "jws@^3.2.2", - "name": "jws", - "escapedName": "jws", - "rawSpec": "^3.2.2", - "saveSpec": null, - "fetchSpec": "^3.2.2" - }, - "_requiredBy": [ - "/jsonwebtoken" - ], - "_resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "_shasum": "001099f3639468c9414000e99995fa52fb478304", - "_spec": "jws@^3.2.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/jsonwebtoken", - "author": { - "name": "Brian J Brennan" - }, - "bugs": { - "url": "https://github.com/brianloveswords/node-jws/issues" - }, - "bundleDependencies": false, - "dependencies": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - }, - "deprecated": false, + "name": "jws", + "version": "3.2.2", "description": "Implementation of JSON Web Signatures", - "devDependencies": { - "semver": "^5.1.0", - "tape": "~2.14.0" - }, + "main": "index.js", "directories": { "test": "test" }, - "gitHead": "c0f6b27bcea5a2ad2e304d91c2e842e4076a6b03", - "homepage": "https://github.com/brianloveswords/node-jws#readme", + "scripts": { + "test": "make test" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianloveswords/node-jws.git" + }, "keywords": [ "jws", "json", "web", "signatures" ], + "author": "Brian J Brennan", "license": "MIT", - "main": "index.js", - "name": "jws", - "repository": { - "type": "git", - "url": "git://github.com/brianloveswords/node-jws.git" + "readmeFilename": "readme.md", + "gitHead": "c0f6b27bcea5a2ad2e304d91c2e842e4076a6b03", + "dependencies": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" }, - "scripts": { - "test": "make test" - }, - "version": "3.2.2" + "devDependencies": { + "semver": "^5.1.0", + "tape": "~2.14.0" + } } diff --git a/node_modules/kareem/package.json b/node_modules/kareem/package.json index 1e931a2..db878a0 100644 --- a/node_modules/kareem/package.json +++ b/node_modules/kareem/package.json @@ -1,37 +1,18 @@ { - "_from": "kareem@2.5.1", - "_id": "kareem@2.5.1", - "_inBundle": false, - "_integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==", - "_location": "/kareem", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "kareem@2.5.1", - "name": "kareem", - "escapedName": "kareem", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/mongoose" - ], - "_resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz", - "_shasum": "7b8203e11819a8e77a34b3517d3ead206764d15d", - "_spec": "kareem@2.5.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongoose", - "author": { - "name": "Valeri Karpov", - "email": "val@karpov.io" - }, - "bugs": { - "url": "https://github.com/vkarpov15/kareem/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "kareem", + "version": "2.5.1", "description": "Next-generation take on pre/post function hooks", + "main": "index.js", + "scripts": { + "lint": "eslint .", + "test": "mocha ./test/*", + "test-coverage": "nyc --reporter lcov mocha ./test/*", + "docs": "node ./docs.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/vkarpov15/kareem.git" + }, "devDependencies": { "acquit": "1.x", "acquit-ignore": "0.2.x", @@ -39,25 +20,12 @@ "mocha": "9.2.0", "nyc": "15.1.0" }, - "engines": { - "node": ">=12.0.0" - }, + "author": "Valeri Karpov ", + "license": "Apache-2.0", "files": [ "index.js" ], - "homepage": "https://github.com/vkarpov15/kareem#readme", - "license": "Apache-2.0", - "main": "index.js", - "name": "kareem", - "repository": { - "type": "git", - "url": "git://github.com/vkarpov15/kareem.git" - }, - "scripts": { - "docs": "node ./docs.js", - "lint": "eslint .", - "test": "mocha ./test/*", - "test-coverage": "nyc --reporter lcov mocha ./test/*" - }, - "version": "2.5.1" + "engines": { + "node": ">=12.0.0" + } } diff --git a/node_modules/lodash/package.json b/node_modules/lodash/package.json index c7c49d5..b35fd95 100644 --- a/node_modules/lodash/package.json +++ b/node_modules/lodash/package.json @@ -1,63 +1,17 @@ { - "_from": "lodash@^4.17.21", - "_id": "lodash@4.17.21", - "_inBundle": false, - "_integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "_location": "/lodash", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "lodash@^4.17.21", - "name": "lodash", - "escapedName": "lodash", - "rawSpec": "^4.17.21", - "saveSpec": null, - "fetchSpec": "^4.17.21" - }, - "_requiredBy": [ - "/jsonwebtoken" - ], - "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "_shasum": "679591c564c3bffaae8454cf0b3df370c3d6911c", - "_spec": "lodash@^4.17.21", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/jsonwebtoken", - "author": { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com" - }, - "bugs": { - "url": "https://github.com/lodash/lodash/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be" - } - ], - "deprecated": false, + "name": "lodash", + "version": "4.17.21", "description": "Lodash modular utilities.", + "keywords": "modules, stdlib, util", "homepage": "https://lodash.com/", + "repository": "lodash/lodash", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "modules", - "stdlib", - "util" - ], "license": "MIT", "main": "lodash.js", - "name": "lodash", - "repository": { - "type": "git", - "url": "git+https://github.com/lodash/lodash.git" - }, - "scripts": { - "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" - }, - "version": "4.17.21" + "author": "John-David Dalton ", + "contributors": [ + "John-David Dalton ", + "Mathias Bynens " + ], + "scripts": { "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" } } diff --git a/node_modules/lru-cache/package.json b/node_modules/lru-cache/package.json index 8daa211..43b7502 100644 --- a/node_modules/lru-cache/package.json +++ b/node_modules/lru-cache/package.json @@ -1,69 +1,34 @@ { - "_from": "lru-cache@^6.0.0", - "_id": "lru-cache@6.0.0", - "_inBundle": false, - "_integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "_location": "/lru-cache", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "lru-cache@^6.0.0", - "name": "lru-cache", - "escapedName": "lru-cache", - "rawSpec": "^6.0.0", - "saveSpec": null, - "fetchSpec": "^6.0.0" - }, - "_requiredBy": [ - "/semver" - ], - "_resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "_shasum": "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94", - "_spec": "lru-cache@^6.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/semver", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me" - }, - "bugs": { - "url": "https://github.com/isaacs/node-lru-cache/issues" - }, - "bundleDependencies": false, - "dependencies": { - "yallist": "^4.0.0" - }, - "deprecated": false, + "name": "lru-cache", "description": "A cache object that deletes the least-recently-used items.", - "devDependencies": { - "benchmark": "^2.1.4", - "tap": "^14.10.7" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/isaacs/node-lru-cache#readme", + "version": "6.0.0", + "author": "Isaac Z. Schlueter ", "keywords": [ "mru", "lru", "cache" ], - "license": "ISC", - "main": "index.js", - "name": "lru-cache", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-lru-cache.git" - }, "scripts": { - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", - "preversion": "npm test", + "test": "tap", "snap": "tap", - "test": "tap" + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" }, - "version": "6.0.0" + "main": "index.js", + "repository": "git://github.com/isaacs/node-lru-cache.git", + "devDependencies": { + "benchmark": "^2.1.4", + "tap": "^14.10.7" + }, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "files": [ + "index.js" + ], + "engines": { + "node": ">=10" + } } diff --git a/node_modules/media-typer/package.json b/node_modules/media-typer/package.json index 3da3cce..8cf3ebc 100644 --- a/node_modules/media-typer/package.json +++ b/node_modules/media-typer/package.json @@ -1,61 +1,26 @@ { - "_from": "media-typer@0.3.0", - "_id": "media-typer@0.3.0", - "_inBundle": false, - "_integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "_location": "/media-typer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "media-typer@0.3.0", - "name": "media-typer", - "escapedName": "media-typer", - "rawSpec": "0.3.0", - "saveSpec": null, - "fetchSpec": "0.3.0" - }, - "_requiredBy": [ - "/type-is" - ], - "_resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "_shasum": "8710d7af0aa626f8fffa1ce00168545263255748", - "_spec": "media-typer@0.3.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/type-is", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/jshttp/media-typer/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "media-typer", "description": "Simple RFC 6838 media type parser and formatter", + "version": "0.3.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "jshttp/media-typer", "devDependencies": { "istanbul": "0.3.2", "mocha": "~1.21.4", "should": "~4.0.4" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "LICENSE", "HISTORY.md", "index.js" ], - "homepage": "https://github.com/jshttp/media-typer#readme", - "license": "MIT", - "name": "media-typer", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/media-typer.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "test": "mocha --reporter spec --check-leaks --bail test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" - }, - "version": "0.3.0" + } } diff --git a/node_modules/memory-pager/package.json b/node_modules/memory-pager/package.json index b29f657..f4847e8 100644 --- a/node_modules/memory-pager/package.json +++ b/node_modules/memory-pager/package.json @@ -1,52 +1,24 @@ { - "_from": "memory-pager@^1.0.2", - "_id": "memory-pager@1.5.0", - "_inBundle": false, - "_integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", - "_location": "/memory-pager", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "memory-pager@^1.0.2", - "name": "memory-pager", - "escapedName": "memory-pager", - "rawSpec": "^1.0.2", - "saveSpec": null, - "fetchSpec": "^1.0.2" - }, - "_requiredBy": [ - "/sparse-bitfield" - ], - "_resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", - "_shasum": "d8751655d22d384682741c972f2c3d6dfa3e66b5", - "_spec": "memory-pager@^1.0.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/sparse-bitfield", - "author": { - "name": "Mathias Buus", - "url": "@mafintosh" - }, - "bugs": { - "url": "https://github.com/mafintosh/memory-pager/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "memory-pager", + "version": "1.5.0", "description": "Access memory using small fixed sized buffers", + "main": "index.js", + "dependencies": {}, "devDependencies": { "standard": "^9.0.0", "tape": "^4.6.3" }, - "homepage": "https://github.com/mafintosh/memory-pager", - "license": "MIT", - "main": "index.js", - "name": "memory-pager", - "repository": { - "type": "git", - "url": "git+https://github.com/mafintosh/memory-pager.git" - }, "scripts": { "test": "standard && tape test.js" }, - "version": "1.5.0" + "repository": { + "type": "git", + "url": "https://github.com/mafintosh/memory-pager.git" + }, + "author": "Mathias Buus (@mafintosh)", + "license": "MIT", + "bugs": { + "url": "https://github.com/mafintosh/memory-pager/issues" + }, + "homepage": "https://github.com/mafintosh/memory-pager" } diff --git a/node_modules/merge-descriptors/package.json b/node_modules/merge-descriptors/package.json index 9e76277..514cdbd 100644 --- a/node_modules/merge-descriptors/package.json +++ b/node_modules/merge-descriptors/package.json @@ -1,48 +1,19 @@ { - "_from": "merge-descriptors@1.0.1", - "_id": "merge-descriptors@1.0.1", - "_inBundle": false, - "_integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "_location": "/merge-descriptors", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "merge-descriptors@1.0.1", - "name": "merge-descriptors", - "escapedName": "merge-descriptors", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "_shasum": "b00aaa556dd8b44568150ec9d1b953f3f90cbb61", - "_spec": "merge-descriptors@1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", + "name": "merge-descriptors", + "description": "Merge objects using descriptors", + "version": "1.0.1", "author": { "name": "Jonathan Ong", "email": "me@jongleberry.com", - "url": "http://jongleberry.com" + "url": "http://jongleberry.com", + "twitter": "https://twitter.com/jongleberry" }, - "bugs": { - "url": "https://github.com/component/merge-descriptors/issues" - }, - "bundleDependencies": false, "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Mike Grabowski", - "email": "grabbou@gmail.com" - } + "Douglas Christopher Wilson ", + "Mike Grabowski " ], - "deprecated": false, - "description": "Merge objects using descriptors", + "license": "MIT", + "repository": "component/merge-descriptors", "devDependencies": { "istanbul": "0.4.1", "mocha": "1.21.5" @@ -53,17 +24,9 @@ "README.md", "index.js" ], - "homepage": "https://github.com/component/merge-descriptors#readme", - "license": "MIT", - "name": "merge-descriptors", - "repository": { - "type": "git", - "url": "git+https://github.com/component/merge-descriptors.git" - }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" - }, - "version": "1.0.1" + } } diff --git a/node_modules/methods/package.json b/node_modules/methods/package.json index cc0d9b8..c4ce6f0 100644 --- a/node_modules/methods/package.json +++ b/node_modules/methods/package.json @@ -1,79 +1,36 @@ { - "_from": "methods@~1.1.2", - "_id": "methods@1.1.2", - "_inBundle": false, - "_integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "_location": "/methods", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "methods@~1.1.2", - "name": "methods", - "escapedName": "methods", - "rawSpec": "~1.1.2", - "saveSpec": null, - "fetchSpec": "~1.1.2" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "_shasum": "5529a4d67654134edcc5266656835b0f851afcee", - "_spec": "methods@~1.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "browser": { - "http": false - }, - "bugs": { - "url": "https://github.com/jshttp/methods/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - }, - { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca", - "url": "http://tjholowaychuk.com" - } - ], - "deprecated": false, + "name": "methods", "description": "HTTP methods that node supports", + "version": "1.1.2", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)", + "TJ Holowaychuk (http://tjholowaychuk.com)" + ], + "license": "MIT", + "repository": "jshttp/methods", "devDependencies": { "istanbul": "0.4.1", "mocha": "1.21.5" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "index.js", "HISTORY.md", "LICENSE" ], - "homepage": "https://github.com/jshttp/methods#readme", - "keywords": [ - "http", - "methods" - ], - "license": "MIT", - "name": "methods", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/methods.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, - "version": "1.1.2" + "browser": { + "http": false + }, + "keywords": [ + "http", + "methods" + ] } diff --git a/node_modules/mime-db/package.json b/node_modules/mime-db/package.json index 9e454b1..32c14b8 100644 --- a/node_modules/mime-db/package.json +++ b/node_modules/mime-db/package.json @@ -1,49 +1,23 @@ { - "_from": "mime-db@1.52.0", - "_id": "mime-db@1.52.0", - "_inBundle": false, - "_integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "_location": "/mime-db", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mime-db@1.52.0", - "name": "mime-db", - "escapedName": "mime-db", - "rawSpec": "1.52.0", - "saveSpec": null, - "fetchSpec": "1.52.0" - }, - "_requiredBy": [ - "/mime-types" - ], - "_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "_shasum": "bbabcdc02859f4987301c856e3387ce5ec43bf70", - "_spec": "mime-db@1.52.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mime-types", - "bugs": { - "url": "https://github.com/jshttp/mime-db/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - }, - { - "name": "Robert Kieffer", - "email": "robert@broofa.com", - "url": "http://github.com/broofa" - } - ], - "deprecated": false, + "name": "mime-db", "description": "Media Type Database", + "version": "1.52.0", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)", + "Robert Kieffer (http://github.com/broofa)" + ], + "license": "MIT", + "keywords": [ + "mime", + "db", + "type", + "types", + "database", + "charset", + "charsets" + ], + "repository": "jshttp/mime-db", "devDependencies": { "bluebird": "3.7.2", "co": "4.6.0", @@ -63,9 +37,6 @@ "raw-body": "2.5.0", "stream-to-array": "2.3.0" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "HISTORY.md", "LICENSE", @@ -73,21 +44,8 @@ "db.json", "index.js" ], - "homepage": "https://github.com/jshttp/mime-db#readme", - "keywords": [ - "mime", - "db", - "type", - "types", - "database", - "charset", - "charsets" - ], - "license": "MIT", - "name": "mime-db", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/mime-db.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "build": "node scripts/build", @@ -98,6 +56,5 @@ "test-cov": "nyc --reporter=html --reporter=text npm test", "update": "npm run fetch && npm run build", "version": "node scripts/version-history.js && git add HISTORY.md" - }, - "version": "1.52.0" + } } diff --git a/node_modules/mime-types/package.json b/node_modules/mime-types/package.json index 0895156..bbef696 100644 --- a/node_modules/mime-types/package.json +++ b/node_modules/mime-types/package.json @@ -1,54 +1,21 @@ { - "_from": "mime-types@^2.1.12", - "_id": "mime-types@2.1.35", - "_inBundle": false, - "_integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "_location": "/mime-types", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "mime-types@^2.1.12", - "name": "mime-types", - "escapedName": "mime-types", - "rawSpec": "^2.1.12", - "saveSpec": null, - "fetchSpec": "^2.1.12" - }, - "_requiredBy": [ - "/accepts", - "/form-data", - "/type-is" - ], - "_resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "_shasum": "381a871b62a734450660ae3deee44813f70d959a", - "_spec": "mime-types@^2.1.12", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/form-data", - "bugs": { - "url": "https://github.com/jshttp/mime-types/issues" - }, - "bundleDependencies": false, + "name": "mime-types", + "description": "The ultimate javascript content-type utility.", + "version": "2.1.35", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jeremiah Senkpiel", - "email": "fishrock123@rocketmail.com", - "url": "https://searchbeam.jit.su" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } + "Douglas Christopher Wilson ", + "Jeremiah Senkpiel (https://searchbeam.jit.su)", + "Jonathan Ong (http://jongleberry.com)" ], + "license": "MIT", + "keywords": [ + "mime", + "types" + ], + "repository": "jshttp/mime-types", "dependencies": { "mime-db": "1.52.0" }, - "deprecated": false, - "description": "The ultimate javascript content-type utility.", "devDependencies": { "eslint": "7.32.0", "eslint-config-standard": "14.1.1", @@ -60,30 +27,18 @@ "mocha": "9.2.2", "nyc": "15.1.0" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "HISTORY.md", "LICENSE", "index.js" ], - "homepage": "https://github.com/jshttp/mime-types#readme", - "keywords": [ - "mime", - "types" - ], - "license": "MIT", - "name": "mime-types", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/mime-types.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec test/test.js", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "2.1.35" + } } diff --git a/node_modules/mime/package.json b/node_modules/mime/package.json index aae7c72..6bd24bc 100644 --- a/node_modules/mime/package.json +++ b/node_modules/mime/package.json @@ -1,73 +1,44 @@ { - "_from": "mime@1.6.0", - "_id": "mime@1.6.0", - "_inBundle": false, - "_integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "_location": "/mime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mime@1.6.0", - "name": "mime", - "escapedName": "mime", - "rawSpec": "1.6.0", - "saveSpec": null, - "fetchSpec": "1.6.0" - }, - "_requiredBy": [ - "/send" - ], - "_resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "_shasum": "32cd9e5c64553bd58d19a568af452acff04981b1", - "_spec": "mime@1.6.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/send", "author": { "name": "Robert Kieffer", - "email": "robert@broofa.com", - "url": "http://github.com/broofa" + "url": "http://github.com/broofa", + "email": "robert@broofa.com" }, "bin": { "mime": "cli.js" }, - "bugs": { - "url": "https://github.com/broofa/node-mime/issues" + "engines": { + "node": ">=4" }, - "bundleDependencies": false, "contributors": [ { "name": "Benjamin Thomas", - "email": "benjamin@benjaminthomas.org", - "url": "http://github.com/bentomas" + "url": "http://github.com/bentomas", + "email": "benjamin@benjaminthomas.org" } ], - "dependencies": {}, - "deprecated": false, "description": "A comprehensive library for mime-type mapping", + "license": "MIT", + "dependencies": {}, "devDependencies": { "github-release-notes": "0.13.1", "mime-db": "1.31.0", "mime-score": "1.1.0" }, - "engines": { - "node": ">=4" + "scripts": { + "prepare": "node src/build.js", + "changelog": "gren changelog --tags=all --generate --override", + "test": "node src/test.js" }, - "homepage": "https://github.com/broofa/node-mime#readme", "keywords": [ "util", "mime" ], - "license": "MIT", "main": "mime.js", "name": "mime", "repository": { - "url": "git+https://github.com/broofa/node-mime.git", + "url": "https://github.com/broofa/node-mime", "type": "git" }, - "scripts": { - "changelog": "gren changelog --tags=all --generate --override", - "prepare": "node src/build.js", - "test": "node src/test.js" - }, "version": "1.6.0" } diff --git a/node_modules/minimatch/package.json b/node_modules/minimatch/package.json index e4687f8..566efdf 100644 --- a/node_modules/minimatch/package.json +++ b/node_modules/minimatch/package.json @@ -1,54 +1,8 @@ { - "_from": "minimatch@^3.1.2", - "_id": "minimatch@3.1.2", - "_inBundle": false, - "_integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "_location": "/minimatch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "minimatch@^3.1.2", - "name": "minimatch", - "escapedName": "minimatch", - "rawSpec": "^3.1.2", - "saveSpec": null, - "fetchSpec": "^3.1.2" - }, - "_requiredBy": [ - "/nodemon" - ], - "_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "_shasum": "19cd194bfd3e428f049a70817c038d89ab4be35b", - "_spec": "minimatch@^3.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" - }, - "bundleDependencies": false, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "deprecated": false, - "description": "a glob matcher in javascript", - "devDependencies": { - "tap": "^15.1.6" - }, - "engines": { - "node": "*" - }, - "files": [ - "minimatch.js" - ], - "homepage": "https://github.com/isaacs/minimatch#readme", - "license": "ISC", - "main": "minimatch.js", + "author": "Isaac Z. Schlueter (http://blog.izs.me)", "name": "minimatch", + "description": "a glob matcher in javascript", + "version": "3.1.2", "publishConfig": { "tag": "v3-legacy" }, @@ -56,11 +10,24 @@ "type": "git", "url": "git://github.com/isaacs/minimatch.git" }, + "main": "minimatch.js", "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", + "test": "tap", "preversion": "npm test", - "test": "tap" + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" }, - "version": "3.1.2" + "engines": { + "node": "*" + }, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "license": "ISC", + "files": [ + "minimatch.js" + ] } diff --git a/node_modules/minimist/package.json b/node_modules/minimist/package.json index 5f2eec8..c10a334 100644 --- a/node_modules/minimist/package.json +++ b/node_modules/minimist/package.json @@ -1,103 +1,75 @@ { - "_from": "minimist@^1.2.6", - "_id": "minimist@1.2.8", - "_inBundle": false, - "_integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "_location": "/minimist", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "minimist@^1.2.6", - "name": "minimist", - "escapedName": "minimist", - "rawSpec": "^1.2.6", - "saveSpec": null, - "fetchSpec": "^1.2.6" - }, - "_requiredBy": [ - "/mkdirp" - ], - "_resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "_shasum": "c1a464e7693302e082a075cee0c057741ac4772c", - "_spec": "minimist@^1.2.6", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mkdirp", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/minimistjs/minimist/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "parse argument options", - "devDependencies": { - "@ljharb/eslint-config": "^21.0.1", - "aud": "^2.0.2", - "auto-changelog": "^2.4.0", - "eslint": "=8.8.0", - "in-publish": "^2.0.1", - "npmignore": "^0.3.0", - "nyc": "^10.3.2", - "safe-publish-latest": "^2.0.0", - "tape": "^5.6.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/minimistjs/minimist", - "keywords": [ - "argv", - "getopt", - "parser", - "optimist" - ], - "license": "MIT", - "main": "index.js", - "name": "minimist", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git://github.com/minimistjs/minimist.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prepack": "npmignore --auto --commentLines=auto", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "testling": { - "files": "test/*.js", - "browsers": [ - "ie/6..latest", - "ff/5", - "firefox/latest", - "chrome/10", - "chrome/latest", - "safari/5.1", - "safari/latest", - "opera/12" - ] - }, - "version": "1.2.8" + "name": "minimist", + "version": "1.2.8", + "description": "parse argument options", + "main": "index.js", + "devDependencies": { + "@ljharb/eslint-config": "^21.0.1", + "aud": "^2.0.2", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.0", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.6.3" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=auto", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint --ext=js,mjs .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/6..latest", + "ff/5", + "firefox/latest", + "chrome/10", + "chrome/latest", + "safari/5.1", + "safari/latest", + "opera/12" + ] + }, + "repository": { + "type": "git", + "url": "git://github.com/minimistjs/minimist.git" + }, + "homepage": "https://github.com/minimistjs/minimist", + "keywords": [ + "argv", + "getopt", + "parser", + "optimist" + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } } diff --git a/node_modules/mkdirp/package.json b/node_modules/mkdirp/package.json index 4aad4ad..951e58d 100644 --- a/node_modules/mkdirp/package.json +++ b/node_modules/mkdirp/package.json @@ -1,68 +1,33 @@ { - "_from": "mkdirp@^0.5.4", - "_id": "mkdirp@0.5.6", - "_inBundle": false, - "_integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "_location": "/mkdirp", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "mkdirp@^0.5.4", - "name": "mkdirp", - "escapedName": "mkdirp", - "rawSpec": "^0.5.4", - "saveSpec": null, - "fetchSpec": "^0.5.4" - }, - "_requiredBy": [ - "/multer" - ], - "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "_shasum": "7def03d2432dcae4ba1d611445c48396062255f6", - "_spec": "mkdirp@^0.5.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/multer", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "bugs": { - "url": "https://github.com/substack/node-mkdirp/issues" - }, - "bundleDependencies": false, - "dependencies": { - "minimist": "^1.2.6" - }, - "deprecated": false, + "name": "mkdirp", "description": "Recursively mkdir, like `mkdir -p`", - "devDependencies": { - "tap": "^16.0.1" + "version": "0.5.6", + "publishConfig": { + "tag": "legacy" }, - "files": [ - "bin", - "index.js" - ], - "homepage": "https://github.com/substack/node-mkdirp#readme", + "author": "James Halliday (http://substack.net)", + "main": "index.js", "keywords": [ "mkdir", "directory" ], - "license": "MIT", - "main": "index.js", - "name": "mkdirp", - "publishConfig": { - "tag": "legacy" - }, "repository": { "type": "git", - "url": "git+https://github.com/substack/node-mkdirp.git" + "url": "https://github.com/substack/node-mkdirp.git" }, "scripts": { "test": "tap test/*.js" }, - "version": "0.5.6" + "dependencies": { + "minimist": "^1.2.6" + }, + "devDependencies": { + "tap": "^16.0.1" + }, + "bin": "bin/cmd.js", + "license": "MIT", + "files": [ + "bin", + "index.js" + ] } diff --git a/node_modules/mongodb-connection-string-url/package.json b/node_modules/mongodb-connection-string-url/package.json index 9e78e73..24a13d7 100644 --- a/node_modules/mongodb-connection-string-url/package.json +++ b/node_modules/mongodb-connection-string-url/package.json @@ -1,37 +1,40 @@ { - "_from": "mongodb-connection-string-url@^2.6.0", - "_id": "mongodb-connection-string-url@2.6.0", - "_inBundle": false, - "_integrity": "sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==", - "_location": "/mongodb-connection-string-url", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "mongodb-connection-string-url@^2.6.0", - "name": "mongodb-connection-string-url", - "escapedName": "mongodb-connection-string-url", - "rawSpec": "^2.6.0", - "saveSpec": null, - "fetchSpec": "^2.6.0" - }, - "_requiredBy": [ - "/mongodb" + "name": "mongodb-connection-string-url", + "version": "2.6.0", + "description": "MongoDB connection strings, based on the WhatWG URL API", + "keywords": [ + "password", + "prompt", + "tty" ], - "_resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz", - "_shasum": "57901bf352372abdde812c81be47b75c6b2ec5cf", - "_spec": "mongodb-connection-string-url@^2.6.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongodb", + "homepage": "https://github.com/mongodb-js/mongodb-connection-string-url", + "repository": { + "type": "git", + "url": "https://github.com/mongodb-js/mongodb-connection-string-url.git" + }, "bugs": { "url": "https://github.com/mongodb-js/mongodb-connection-string-url/issues" }, - "bundleDependencies": false, - "dependencies": { - "@types/whatwg-url": "^8.2.1", - "whatwg-url": "^11.0.0" + "main": "lib/index.js", + "exports": { + "require": "./lib/index.js", + "import": "./.esm-wrapper.mjs" }, - "deprecated": false, - "description": "MongoDB connection strings, based on the WhatWG URL API", + "files": [ + "LICENSE", + "lib", + "package.json", + "README.md", + ".esm-wrapper.mjs" + ], + "scripts": { + "lint": "eslint \"{src,test}/**/*.ts\"", + "test": "npm run lint && npm run build && nyc mocha --colors -r ts-node/register test/*.ts", + "build": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs", + "prepack": "npm run build", + "compile-ts": "tsc -p tsconfig.json" + }, + "license": "Apache-2.0", "devDependencies": { "@types/chai": "^4.2.5", "@types/mocha": "^8.0.3", @@ -52,36 +55,8 @@ "ts-node": "^10.9.1", "typescript": "^4.7.4" }, - "exports": { - "require": "./lib/index.js", - "import": "./.esm-wrapper.mjs" - }, - "files": [ - "LICENSE", - "lib", - "package.json", - "README.md", - ".esm-wrapper.mjs" - ], - "homepage": "https://github.com/mongodb-js/mongodb-connection-string-url", - "keywords": [ - "password", - "prompt", - "tty" - ], - "license": "Apache-2.0", - "main": "lib/index.js", - "name": "mongodb-connection-string-url", - "repository": { - "type": "git", - "url": "git+https://github.com/mongodb-js/mongodb-connection-string-url.git" - }, - "scripts": { - "build": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs", - "compile-ts": "tsc -p tsconfig.json", - "lint": "eslint \"{src,test}/**/*.ts\"", - "prepack": "npm run build", - "test": "npm run lint && npm run build && nyc mocha --colors -r ts-node/register test/*.ts" - }, - "version": "2.6.0" + "dependencies": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } } diff --git a/node_modules/mongodb/package.json b/node_modules/mongodb/package.json index 623f5d6..2345573 100644 --- a/node_modules/mongodb/package.json +++ b/node_modules/mongodb/package.json @@ -1,44 +1,53 @@ { - "_from": "mongodb@5.6.0", - "_id": "mongodb@5.6.0", - "_inBundle": false, - "_integrity": "sha512-z8qVs9NfobHJm6uzK56XBZF8XwM9H294iRnB7wNjF0SnY93si5HPziIJn+qqvUR5QOff/4L0gCD6SShdR/GtVQ==", - "_location": "/mongodb", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mongodb@5.6.0", - "name": "mongodb", - "escapedName": "mongodb", - "rawSpec": "5.6.0", - "saveSpec": null, - "fetchSpec": "5.6.0" - }, - "_requiredBy": [ - "/", - "/mongoose" + "name": "mongodb", + "version": "5.6.0", + "description": "The official MongoDB driver for Node.js", + "main": "lib/index.js", + "files": [ + "lib", + "src", + "etc/prepare.js", + "mongodb.d.ts", + "tsconfig.json" + ], + "types": "mongodb.d.ts", + "repository": { + "type": "git", + "url": "git@github.com:mongodb/node-mongodb-native.git" + }, + "keywords": [ + "mongodb", + "driver", + "official" ], - "_resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.6.0.tgz", - "_shasum": "caff5278341bfc0f1ef6f394bb403d207de03d1e", - "_spec": "mongodb@5.6.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", "author": { "name": "The MongoDB NodeJS Team", "email": "dbx-node@mongodb.com" }, - "bugs": { - "url": "https://jira.mongodb.org/projects/NODE/issues/" - }, - "bundleDependencies": false, "dependencies": { "bson": "^5.3.0", "mongodb-connection-string-url": "^2.6.0", - "saslprep": "^1.0.3", "socks": "^2.7.1" }, - "deprecated": false, - "description": "The official MongoDB driver for Node.js", + "optionalDependencies": { + "saslprep": "^1.0.3" + }, + "peerDependencies": { + "@aws-sdk/credential-providers": "^3.201.0", + "mongodb-client-encryption": ">=2.3.0 <3", + "snappy": "^7.2.2" + }, + "peerDependenciesMeta": { + "@aws-sdk/credential-providers": { + "optional": true + }, + "snappy": { + "optional": true + }, + "mongodb-client-encryption": { + "optional": true + } + }, "devDependencies": { "@iarna/toml": "^2.2.5", "@istanbuljs/nyc-config-typescript": "^1.0.2", @@ -87,79 +96,45 @@ "v8-heapsnapshot": "^1.2.0", "yargs": "^17.7.2" }, + "license": "Apache-2.0", "engines": { "node": ">=14.20.1" }, - "files": [ - "lib", - "src", - "etc/prepare.js", - "mongodb.d.ts", - "tsconfig.json" - ], + "bugs": { + "url": "https://jira.mongodb.org/projects/NODE/issues/" + }, "homepage": "https://github.com/mongodb/node-mongodb-native", - "keywords": [ - "mongodb", - "driver", - "official" - ], - "license": "Apache-2.0", - "main": "lib/index.js", - "name": "mongodb", - "optionalDependencies": { - "saslprep": "^1.0.3" - }, - "peerDependencies": { - "@aws-sdk/credential-providers": "^3.201.0", - "mongodb-client-encryption": ">=2.3.0 <3", - "snappy": "^7.2.2" - }, - "peerDependenciesMeta": { - "@aws-sdk/credential-providers": { - "optional": true - }, - "snappy": { - "optional": true - }, - "mongodb-client-encryption": { - "optional": true - } - }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/mongodb/node-mongodb-native.git" - }, "scripts": { - "build:docs": "./etc/docs/build.ts", - "build:dts": "npm run build:ts && api-extractor run && node etc/clean_definition_files.cjs", "build:evergreen": "node .evergreen/generate_evergreen_tasks.js", "build:ts": "node ./node_modules/typescript/bin/tsc", + "build:dts": "npm run build:ts && api-extractor run && node etc/clean_definition_files.cjs", + "build:docs": "./etc/docs/build.ts", "build:typedoc": "typedoc", - "check:adl": "mocha --config test/mocha_mongodb.json test/manual/atlas-data-lake-testing", - "check:atlas": "mocha --config test/manual/mocharc.json test/manual/atlas_connectivity.test.js", - "check:aws": "nyc mocha --config test/mocha_mongodb.json test/integration/auth/mongodb_aws.test.ts", "check:bench": "node test/benchmarks/driverBench", "check:coverage": "nyc npm run test:all", - "check:csfle": "mocha --config test/mocha_mongodb.json test/integration/client-side-encryption", - "check:dependencies": "mocha test/action/dependency.test.ts", - "check:dts": "node ./node_modules/typescript/bin/tsc --noEmit mongodb.d.ts && tsd", - "check:eslint": "eslint -v && eslint --max-warnings=0 --ext '.js,.ts' src test", "check:integration-coverage": "nyc npm run check:test", - "check:kerberos": "nyc mocha --config test/manual/mocharc.json test/manual/kerberos.test.ts", "check:lambda": "mocha --config test/mocha_lambda.json test/integration/node-specific/examples/handler.test.js", "check:lambda:aws": "mocha --config test/mocha_lambda.json test/integration/node-specific/examples/aws_handler.test.js", - "check:ldap": "nyc mocha --config test/manual/mocharc.json test/manual/ldap.test.js", "check:lint": "npm run build:dts && npm run check:dts && npm run check:eslint && npm run check:tsd", - "check:ocsp": "mocha --config test/manual/mocharc.json test/manual/ocsp_support.test.js", - "check:oidc": "mocha --config test/mocha_mongodb.json test/manual/mongodb_oidc.prose.test.ts", - "check:search-indexes": "nyc mocha --config test/mocha_mongodb.json test/manual/search-index-management.spec.test.ts", - "check:snappy": "mocha test/unit/assorted/snappy.test.js", - "check:socks5": "mocha --config test/manual/mocharc.json test/manual/socks5.test.ts", - "check:test": "mocha --config test/mocha_mongodb.json test/integration", - "check:tls": "mocha --config test/manual/mocharc.json test/manual/tls_support.test.js", - "check:ts": "node ./node_modules/typescript/bin/tsc -v && node ./node_modules/typescript/bin/tsc --noEmit", + "check:eslint": "eslint -v && eslint --max-warnings=0 --ext '.js,.ts' src test", "check:tsd": "tsd --version && tsd", + "check:dependencies": "mocha test/action/dependency.test.ts", + "check:dts": "node ./node_modules/typescript/bin/tsc --noEmit mongodb.d.ts && tsd", + "check:search-indexes": "nyc mocha --config test/mocha_mongodb.json test/manual/search-index-management.spec.test.ts", + "check:test": "mocha --config test/mocha_mongodb.json test/integration", "check:unit": "mocha test/unit", + "check:ts": "node ./node_modules/typescript/bin/tsc -v && node ./node_modules/typescript/bin/tsc --noEmit", + "check:atlas": "mocha --config test/manual/mocharc.json test/manual/atlas_connectivity.test.js", + "check:adl": "mocha --config test/mocha_mongodb.json test/manual/atlas-data-lake-testing", + "check:aws": "nyc mocha --config test/mocha_mongodb.json test/integration/auth/mongodb_aws.test.ts", + "check:oidc": "mocha --config test/mocha_mongodb.json test/manual/mongodb_oidc.prose.test.ts", + "check:ocsp": "mocha --config test/manual/mocharc.json test/manual/ocsp_support.test.js", + "check:kerberos": "nyc mocha --config test/manual/mocharc.json test/manual/kerberos.test.ts", + "check:tls": "mocha --config test/manual/mocharc.json test/manual/tls_support.test.js", + "check:ldap": "nyc mocha --config test/manual/mocharc.json test/manual/ldap.test.js", + "check:socks5": "mocha --config test/manual/mocharc.json test/manual/socks5.test.ts", + "check:csfle": "mocha --config test/mocha_mongodb.json test/integration/client-side-encryption", + "check:snappy": "mocha test/unit/assorted/snappy.test.js", "fix:eslint": "npm run check:eslint -- --fix", "prepare": "node etc/prepare.js", "preview:docs": "ts-node etc/docs/preview.ts", @@ -176,7 +151,5 @@ "module": "commonjs", "moduleResolution": "node" } - }, - "types": "mongodb.d.ts", - "version": "5.6.0" + } } diff --git a/node_modules/mongoose/node_modules/ms/package.json b/node_modules/mongoose/node_modules/ms/package.json index d7415c7..4997189 100644 --- a/node_modules/mongoose/node_modules/ms/package.json +++ b/node_modules/mongoose/node_modules/ms/package.json @@ -1,40 +1,16 @@ { - "_from": "ms@2.1.3", - "_id": "ms@2.1.3", - "_inBundle": false, - "_integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "_location": "/mongoose/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.1.3", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.1.3", - "saveSpec": null, - "fetchSpec": "2.1.3" - }, - "_requiredBy": [ - "/mongoose" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "_shasum": "574c8138ce1d2b5861f0b44579dbadd60c6615b2", - "_spec": "ms@2.1.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongoose", - "bugs": { - "url": "https://github.com/vercel/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ms", + "version": "2.1.3", "description": "Tiny millisecond conversion utility", - "devDependencies": { - "eslint": "4.18.2", - "expect.js": "0.3.1", - "husky": "0.14.3", - "lint-staged": "5.0.0", - "mocha": "4.0.1", - "prettier": "2.0.5" + "repository": "vercel/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -43,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/vercel/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -55,16 +26,13 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/vercel/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.1.3" + "license": "MIT", + "devDependencies": { + "eslint": "4.18.2", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1", + "prettier": "2.0.5" + } } diff --git a/node_modules/mongoose/package.json b/node_modules/mongoose/package.json index 08a754d..4f2d4b2 100644 --- a/node_modules/mongoose/package.json +++ b/node_modules/mongoose/package.json @@ -1,41 +1,23 @@ { - "_from": "mongoose@7.3.0", - "_id": "mongoose@7.3.0", - "_inBundle": false, - "_integrity": "sha512-gvkV5qxmBkGohlk7VTeePMPM2OkQPeqVYZHvjoM4goOIK6G1eSfJMZwXV21asivXxlaz6OuP29TfGAKrKooDAg==", - "_location": "/mongoose", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mongoose@7.3.0", - "name": "mongoose", - "escapedName": "mongoose", - "rawSpec": "7.3.0", - "saveSpec": null, - "fetchSpec": "7.3.0" - }, - "_requiredBy": [ - "/" + "name": "mongoose", + "description": "Mongoose MongoDB ODM", + "version": "7.3.0", + "author": "Guillermo Rauch ", + "keywords": [ + "mongodb", + "document", + "model", + "schema", + "database", + "odm", + "data", + "datastore", + "query", + "nosql", + "orm", + "db" ], - "_resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.3.0.tgz", - "_shasum": "976f1085b1d7caa2ad9b9822f420f3eb439d896d", - "_spec": "mongoose@7.3.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Guillermo Rauch", - "email": "guillermo@learnboost.com" - }, - "browser": "./dist/browser.umd.js", - "bugs": { - "url": "https://github.com/Automattic/mongoose/issues/new" - }, - "bundleDependencies": false, - "config": { - "mongodbMemoryServer": { - "disablePostinstall": true - } - }, + "license": "MIT", "dependencies": { "bson": "^5.3.0", "kareem": "2.5.1", @@ -45,8 +27,6 @@ "ms": "2.1.3", "sift": "16.0.1" }, - "deprecated": false, - "description": "Mongoose MongoDB ODM", "devDependencies": { "@babel/core": "7.22.1", "@babel/preset-env": "7.22.4", @@ -70,7 +50,6 @@ "eslint-plugin-markdown": "^3.0.0", "eslint-plugin-mocha-no-only": "1.1.1", "express": "^4.18.1", - "fs-extra": "~11.1.1", "highlight.js": "11.8.0", "lodash.isequal": "4.5.0", "lodash.isequalwith": "4.4.0", @@ -88,35 +67,68 @@ "tsd": "0.28.1", "typescript": "5.1.3", "uuid": "9.0.0", - "webpack": "5.85.0" + "webpack": "5.85.0", + "fs-extra": "~11.1.1" }, "directories": { "lib": "./lib/mongoose" }, + "scripts": { + "docs:clean": "npm run docs:clean:stable", + "docs:clean:stable": "rimraf index.html && rimraf -rf ./docs/*.html && rimraf -rf ./docs/api && rimraf -rf ./docs/tutorials/*.html && rimraf -rf ./docs/typescript/*.html && rimraf -rf ./docs/*.html && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp", + "docs:clean:5x": "rimraf index.html && rimraf -rf ./docs/5.x && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp", + "docs:clean:6x": "rimraf index.html && rimraf -rf ./docs/6.x && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp", + "docs:copy:tmp": "mkdirp ./tmp/docs/css && mkdirp ./tmp/docs/js && mkdirp ./tmp/docs/images && mkdirp ./tmp/docs/tutorials && mkdirp ./tmp/docs/typescript && mkdirp ./tmp/docs/api && ncp ./docs/css ./tmp/docs/css --filter=.css$ && ncp ./docs/js ./tmp/docs/js --filter=.js$ && ncp ./docs/images ./tmp/docs/images && ncp ./docs/tutorials ./tmp/docs/tutorials && ncp ./docs/typescript ./tmp/docs/typescript && ncp ./docs/api ./tmp/docs/api && cp index.html ./tmp && cp docs/*.html ./tmp/docs/", + "docs:copy:tmp:5x": "rimraf ./docs/5.x && ncp ./tmp ./docs/5.x", + "docs:move:6x:tmp": "mv ./docs/6.x ./tmp", + "docs:copy:tmp:6x": "rimraf ./docs/6.x && ncp ./tmp ./docs/6.x", + "docs:checkout:gh-pages": "git checkout gh-pages", + "docs:checkout:5x": "git checkout 5.x", + "docs:checkout:6x": "git checkout 6.x", + "docs:generate": "node ./scripts/website.js", + "docs:generate:search": "node ./scripts/generateSearch.js", + "docs:generate:sponsorData": "node ./scripts/loadSponsorData.js", + "docs:merge:stable": "git merge master", + "docs:merge:5x": "git merge 5.x", + "docs:merge:6x": "git merge 6.x", + "docs:test": "npm run docs:generate && npm run docs:generate:search", + "docs:view": "node ./scripts/static.js", + "docs:prepare:publish:stable": "npm run docs:checkout:gh-pages && npm run docs:merge:stable && npm run docs:clean:stable && npm run docs:generate && npm run docs:generate:search", + "docs:prepare:publish:5x": "npm run docs:checkout:5x && npm run docs:merge:5x && npm run docs:clean:stable && npm run docs:generate && npm run docs:copy:tmp && npm run docs:checkout:gh-pages && npm run docs:copy:tmp:5x", + "docs:prepare:publish:6x": "npm run docs:checkout:6x && npm run docs:merge:6x && npm run docs:clean:stable && env DOCS_DEPLOY=true npm run docs:generate && npm run docs:move:6x:tmp && npm run docs:checkout:gh-pages && npm run docs:copy:tmp:6x", + "docs:check-links": "blc http://127.0.0.1:8089 -ro", + "lint": "eslint .", + "lint-js": "eslint . --ext .js", + "lint-ts": "eslint . --ext .ts", + "lint-md": "eslint . --ext .md", + "build-browser": "(rm ./dist/* || true) && node ./scripts/build-browser.js", + "prepublishOnly": "npm run build-browser", + "release": "git pull && git push origin master --tags && npm publish", + "release-5x": "git pull origin 5.x && git push origin 5.x && git push origin 5.x --tags && npm publish --tag 5x", + "release-6x": "git pull origin 6.x && git push origin 6.x && git push origin 6.x --tags && npm publish --tag legacy", + "mongo": "node ./tools/repl.js", + "test": "mocha --exit ./test/*.test.js", + "test-deno": "deno run --allow-env --allow-read --allow-net --allow-run --allow-sys --allow-write ./test/deno.js", + "test-rs": "START_REPLICA_SET=1 mocha --timeout 30000 --exit ./test/*.test.js", + "test-tsd": "node ./test/types/check-types-filename && tsd", + "tdd": "mocha ./test/*.test.js --inspect --watch --recursive --watch-files ./**/*.{js,ts}", + "test-coverage": "nyc --reporter=html --reporter=text npm test", + "ts-benchmark": "cd ./benchmarks/typescript/simple && npm install && npm run benchmark | node ../../../scripts/tsc-diagnostics-check" + }, + "main": "./index.js", + "types": "./types/index.d.ts", "engines": { "node": ">=14.20.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mongoose" + "bugs": { + "url": "https://github.com/Automattic/mongoose/issues/new" + }, + "repository": { + "type": "git", + "url": "git://github.com/Automattic/mongoose.git" }, "homepage": "https://mongoosejs.com", - "keywords": [ - "mongodb", - "document", - "model", - "schema", - "database", - "odm", - "data", - "datastore", - "query", - "nosql", - "orm", - "db" - ], - "license": "MIT", - "main": "./index.js", + "browser": "./dist/browser.umd.js", "mocha": { "extension": [ "test.js" @@ -125,52 +137,14 @@ "test/**/*.js" ] }, - "name": "mongoose", - "repository": { - "type": "git", - "url": "git://github.com/Automattic/mongoose.git" + "config": { + "mongodbMemoryServer": { + "disablePostinstall": true + } }, - "scripts": { - "build-browser": "(rm ./dist/* || true) && node ./scripts/build-browser.js", - "docs:check-links": "blc http://127.0.0.1:8089 -ro", - "docs:checkout:5x": "git checkout 5.x", - "docs:checkout:6x": "git checkout 6.x", - "docs:checkout:gh-pages": "git checkout gh-pages", - "docs:clean": "npm run docs:clean:stable", - "docs:clean:5x": "rimraf index.html && rimraf -rf ./docs/5.x && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp", - "docs:clean:6x": "rimraf index.html && rimraf -rf ./docs/6.x && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp", - "docs:clean:stable": "rimraf index.html && rimraf -rf ./docs/*.html && rimraf -rf ./docs/api && rimraf -rf ./docs/tutorials/*.html && rimraf -rf ./docs/typescript/*.html && rimraf -rf ./docs/*.html && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp", - "docs:copy:tmp": "mkdirp ./tmp/docs/css && mkdirp ./tmp/docs/js && mkdirp ./tmp/docs/images && mkdirp ./tmp/docs/tutorials && mkdirp ./tmp/docs/typescript && mkdirp ./tmp/docs/api && ncp ./docs/css ./tmp/docs/css --filter=.css$ && ncp ./docs/js ./tmp/docs/js --filter=.js$ && ncp ./docs/images ./tmp/docs/images && ncp ./docs/tutorials ./tmp/docs/tutorials && ncp ./docs/typescript ./tmp/docs/typescript && ncp ./docs/api ./tmp/docs/api && cp index.html ./tmp && cp docs/*.html ./tmp/docs/", - "docs:copy:tmp:5x": "rimraf ./docs/5.x && ncp ./tmp ./docs/5.x", - "docs:copy:tmp:6x": "rimraf ./docs/6.x && ncp ./tmp ./docs/6.x", - "docs:generate": "node ./scripts/website.js", - "docs:generate:search": "node ./scripts/generateSearch.js", - "docs:generate:sponsorData": "node ./scripts/loadSponsorData.js", - "docs:merge:5x": "git merge 5.x", - "docs:merge:6x": "git merge 6.x", - "docs:merge:stable": "git merge master", - "docs:move:6x:tmp": "mv ./docs/6.x ./tmp", - "docs:prepare:publish:5x": "npm run docs:checkout:5x && npm run docs:merge:5x && npm run docs:clean:stable && npm run docs:generate && npm run docs:copy:tmp && npm run docs:checkout:gh-pages && npm run docs:copy:tmp:5x", - "docs:prepare:publish:6x": "npm run docs:checkout:6x && npm run docs:merge:6x && npm run docs:clean:stable && env DOCS_DEPLOY=true npm run docs:generate && npm run docs:move:6x:tmp && npm run docs:checkout:gh-pages && npm run docs:copy:tmp:6x", - "docs:prepare:publish:stable": "npm run docs:checkout:gh-pages && npm run docs:merge:stable && npm run docs:clean:stable && npm run docs:generate && npm run docs:generate:search", - "docs:test": "npm run docs:generate && npm run docs:generate:search", - "docs:view": "node ./scripts/static.js", - "lint": "eslint .", - "lint-js": "eslint . --ext .js", - "lint-md": "eslint . --ext .md", - "lint-ts": "eslint . --ext .ts", - "mongo": "node ./tools/repl.js", - "prepublishOnly": "npm run build-browser", - "release": "git pull && git push origin master --tags && npm publish", - "release-5x": "git pull origin 5.x && git push origin 5.x && git push origin 5.x --tags && npm publish --tag 5x", - "release-6x": "git pull origin 6.x && git push origin 6.x && git push origin 6.x --tags && npm publish --tag legacy", - "tdd": "mocha ./test/*.test.js --inspect --watch --recursive --watch-files ./**/*.{js,ts}", - "test": "mocha --exit ./test/*.test.js", - "test-coverage": "nyc --reporter=html --reporter=text npm test", - "test-deno": "deno run --allow-env --allow-read --allow-net --allow-run --allow-sys --allow-write ./test/deno.js", - "test-rs": "START_REPLICA_SET=1 mocha --timeout 30000 --exit ./test/*.test.js", - "test-tsd": "node ./test/types/check-types-filename && tsd", - "ts-benchmark": "cd ./benchmarks/typescript/simple && npm install && npm run benchmark | node ../../../scripts/tsc-diagnostics-check" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mongoose" }, "tsd": { "directory": "test/types", @@ -184,7 +158,5 @@ "module": "commonjs", "target": "ES2017" } - }, - "types": "./types/index.d.ts", - "version": "7.3.0" + } } diff --git a/node_modules/mpath/package.json b/node_modules/mpath/package.json index b01250c..6d1242d 100644 --- a/node_modules/mpath/package.json +++ b/node_modules/mpath/package.json @@ -1,45 +1,29 @@ { - "_from": "mpath@0.9.0", - "_id": "mpath@0.9.0", - "_inBundle": false, - "_integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", - "_location": "/mpath", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mpath@0.9.0", - "name": "mpath", - "escapedName": "mpath", - "rawSpec": "0.9.0", - "saveSpec": null, - "fetchSpec": "0.9.0" - }, - "_requiredBy": [ - "/mongoose" - ], - "_resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", - "_shasum": "0c122fe107846e31fc58c75b09c35514b3871904", - "_spec": "mpath@0.9.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongoose", - "author": { - "name": "Aaron Heckmann", - "email": "aaron.heckmann+github@gmail.com" - }, - "bugs": { - "url": "https://github.com/aheckmann/mpath/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "mpath", + "version": "0.9.0", "description": "{G,S}et object values using MongoDB-like path notation", - "devDependencies": { - "benchmark": "~1.0.0", - "eslint": "7.16.0", - "mocha": "5.x" + "main": "index.js", + "scripts": { + "lint": "eslint .", + "test": "mocha test/*" }, "engines": { "node": ">=4.0.0" }, + "repository": "git://github.com/aheckmann/mpath.git", + "keywords": [ + "mongodb", + "path", + "get", + "set" + ], + "author": "Aaron Heckmann ", + "license": "MIT", + "devDependencies": { + "mocha": "5.x", + "benchmark": "~1.0.0", + "eslint": "7.16.0" + }, "eslintConfig": { "extends": [ "eslint:recommended" @@ -156,24 +140,5 @@ ], "no-prototype-builtins": "off" } - }, - "homepage": "https://github.com/aheckmann/mpath#readme", - "keywords": [ - "mongodb", - "path", - "get", - "set" - ], - "license": "MIT", - "main": "index.js", - "name": "mpath", - "repository": { - "type": "git", - "url": "git://github.com/aheckmann/mpath.git" - }, - "scripts": { - "lint": "eslint .", - "test": "mocha test/*" - }, - "version": "0.9.0" + } } diff --git a/node_modules/mquery/node_modules/debug/package.json b/node_modules/mquery/node_modules/debug/package.json index fd037ad..3bcdc24 100644 --- a/node_modules/mquery/node_modules/debug/package.json +++ b/node_modules/mquery/node_modules/debug/package.json @@ -1,56 +1,38 @@ { - "_from": "debug@4.x", - "_id": "debug@4.3.4", - "_inBundle": false, - "_integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "_location": "/mquery/debug", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "debug@4.x", - "name": "debug", - "escapedName": "debug", - "rawSpec": "4.x", - "saveSpec": null, - "fetchSpec": "4.x" + "name": "debug", + "version": "4.3.4", + "repository": { + "type": "git", + "url": "git://github.com/debug-js/debug.git" }, - "_requiredBy": [ - "/mquery" + "description": "Lightweight debugging utility for Node.js and the browser", + "keywords": [ + "debug", + "log", + "debugger" ], - "_resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "_shasum": "1319f6579357f2338d3337d2cdd4914bb5dcc865", - "_spec": "debug@4.x", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mquery", - "author": { - "name": "Josh Junon", - "email": "josh.junon@protonmail.com" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/debug-js/debug/issues" - }, - "bundleDependencies": false, + "files": [ + "src", + "LICENSE", + "README.md" + ], + "author": "Josh Junon ", "contributors": [ - { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io" - }, - { - "name": "Andrew Rhyne", - "email": "rhyneandrew@gmail.com" - } + "TJ Holowaychuk ", + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " ], + "license": "MIT", + "scripts": { + "lint": "xo", + "test": "npm run test:node && npm run test:browser && npm run lint", + "test:node": "istanbul cover _mocha -- test.js", + "test:browser": "karma start --single-run", + "test:coverage": "cat ./coverage/lcov.info | coveralls" + }, "dependencies": { "ms": "2.1.2" }, - "deprecated": false, - "description": "Lightweight debugging utility for Node.js and the browser", "devDependencies": { "brfs": "^2.0.1", "browserify": "^16.2.3", @@ -64,38 +46,14 @@ "mocha-lcov-reporter": "^1.2.0", "xo": "^0.23.0" }, - "engines": { - "node": ">=6.0" - }, - "files": [ - "src", - "LICENSE", - "README.md" - ], - "homepage": "https://github.com/debug-js/debug#readme", - "keywords": [ - "debug", - "log", - "debugger" - ], - "license": "MIT", - "main": "./src/index.js", - "name": "debug", "peerDependenciesMeta": { "supports-color": { "optional": true } }, - "repository": { - "type": "git", - "url": "git://github.com/debug-js/debug.git" - }, - "scripts": { - "lint": "xo", - "test": "npm run test:node && npm run test:browser && npm run lint", - "test:browser": "karma start --single-run", - "test:coverage": "cat ./coverage/lcov.info | coveralls", - "test:node": "istanbul cover _mocha -- test.js" - }, - "version": "4.3.4" + "main": "./src/index.js", + "browser": "./src/browser.js", + "engines": { + "node": ">=6.0" + } } diff --git a/node_modules/mquery/node_modules/ms/package.json b/node_modules/mquery/node_modules/ms/package.json index 5ae420b..eea666e 100644 --- a/node_modules/mquery/node_modules/ms/package.json +++ b/node_modules/mquery/node_modules/ms/package.json @@ -1,39 +1,16 @@ { - "_from": "ms@2.1.2", - "_id": "ms@2.1.2", - "_inBundle": false, - "_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "_location": "/mquery/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.1.2", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.1.2", - "saveSpec": null, - "fetchSpec": "2.1.2" - }, - "_requiredBy": [ - "/mquery/debug" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "_shasum": "d09d1f357b443f493382a8eb3ccd183872ae6009", - "_spec": "ms@2.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mquery/node_modules/debug", - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ms", + "version": "2.1.2", "description": "Tiny millisecond conversion utility", - "devDependencies": { - "eslint": "4.12.1", - "expect.js": "0.3.1", - "husky": "0.14.3", - "lint-staged": "5.0.0", - "mocha": "4.0.1" + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -42,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -54,16 +26,12 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/zeit/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.1.2" + "license": "MIT", + "devDependencies": { + "eslint": "4.12.1", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1" + } } diff --git a/node_modules/mquery/package.json b/node_modules/mquery/package.json index b0a4450..9016083 100644 --- a/node_modules/mquery/package.json +++ b/node_modules/mquery/package.json @@ -1,66 +1,38 @@ { - "_from": "mquery@5.0.0", - "_id": "mquery@5.0.0", - "_inBundle": false, - "_integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", - "_location": "/mquery", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mquery@5.0.0", - "name": "mquery", - "escapedName": "mquery", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" + "name": "mquery", + "version": "5.0.0", + "description": "Expressive query building for MongoDB", + "main": "lib/mquery.js", + "scripts": { + "test": "mocha --exit test/index.js test/*.test.js", + "fix-lint": "eslint . --fix", + "lint": "eslint ." }, - "_requiredBy": [ - "/mongoose" - ], - "_resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", - "_shasum": "a95be5dfc610b23862df34a47d3e5d60e110695d", - "_spec": "mquery@5.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongoose", - "author": { - "name": "Aaron Heckmann", - "email": "aaron.heckmann+github@gmail.com" + "repository": { + "type": "git", + "url": "git://github.com/aheckmann/mquery.git" }, - "bugs": { - "url": "https://github.com/aheckmann/mquery/issues/new" + "engines": { + "node": ">=14.0.0" }, - "bundleDependencies": false, "dependencies": { "debug": "4.x" }, - "deprecated": false, - "description": "Expressive query building for MongoDB", "devDependencies": { "eslint": "8.x", "eslint-plugin-mocha-no-only": "1.1.1", "mocha": "9.x", "mongodb": "5.x" }, - "engines": { - "node": ">=14.0.0" + "bugs": { + "url": "https://github.com/aheckmann/mquery/issues/new" }, - "homepage": "https://github.com/aheckmann/mquery/", + "author": "Aaron Heckmann ", + "license": "MIT", "keywords": [ "mongodb", "query", "builder" ], - "license": "MIT", - "main": "lib/mquery.js", - "name": "mquery", - "repository": { - "type": "git", - "url": "git://github.com/aheckmann/mquery.git" - }, - "scripts": { - "fix-lint": "eslint . --fix", - "lint": "eslint .", - "test": "mocha --exit test/index.js test/*.test.js" - }, - "version": "5.0.0" + "homepage": "https://github.com/aheckmann/mquery/" } diff --git a/node_modules/ms/package.json b/node_modules/ms/package.json index 0c890e2..6a31c81 100644 --- a/node_modules/ms/package.json +++ b/node_modules/ms/package.json @@ -1,39 +1,16 @@ { - "_from": "ms@2.0.0", - "_id": "ms@2.0.0", - "_inBundle": false, - "_integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "_location": "/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.0.0", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/debug" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "_shasum": "5608aeadfc00be6c2901df5f9861788de0d597c8", - "_spec": "ms@2.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/debug", - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ms", + "version": "2.0.0", "description": "Tiny milisecond conversion utility", - "devDependencies": { - "eslint": "3.19.0", - "expect.js": "0.3.1", - "husky": "0.13.3", - "lint-staged": "3.4.1", - "mocha": "3.4.1" + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -42,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -54,16 +26,12 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/zeit/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.0.0" + "license": "MIT", + "devDependencies": { + "eslint": "3.19.0", + "expect.js": "0.3.1", + "husky": "0.13.3", + "lint-staged": "3.4.1", + "mocha": "3.4.1" + } } diff --git a/node_modules/multer/package.json b/node_modules/multer/package.json index 573f194..8545a73 100644 --- a/node_modules/multer/package.json +++ b/node_modules/multer/package.json @@ -1,45 +1,22 @@ { - "_from": "multer@1.4.5-lts.1", - "_id": "multer@1.4.5-lts.1", - "_inBundle": false, - "_integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", - "_location": "/multer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "multer@1.4.5-lts.1", - "name": "multer", - "escapedName": "multer", - "rawSpec": "1.4.5-lts.1", - "saveSpec": null, - "fetchSpec": "1.4.5-lts.1" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "_shasum": "803e24ad1984f58edffbc79f56e305aec5cfd1ac", - "_spec": "multer@1.4.5-lts.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "bugs": { - "url": "https://github.com/expressjs/multer/issues" - }, - "bundleDependencies": false, + "name": "multer", + "description": "Middleware for handling `multipart/form-data`.", + "version": "1.4.5-lts.1", "contributors": [ - { - "name": "Hage Yaapa", - "email": "captain@hacksparrow.com", - "url": "http://www.hacksparrow.com" - }, - { - "name": "Jaret Pfluger", - "email": "https://github.com/jpfluger" - }, - { - "name": "Linus Unnebäck", - "email": "linus@folkdatorn.se" - } + "Hage Yaapa (http://www.hacksparrow.com)", + "Jaret Pfluger ", + "Linus Unnebäck " + ], + "license": "MIT", + "repository": "expressjs/multer", + "keywords": [ + "form", + "post", + "multipart", + "form-data", + "formdata", + "express", + "middleware" ], "dependencies": { "append-field": "^1.0.0", @@ -50,8 +27,6 @@ "type-is": "^1.6.4", "xtend": "^4.0.0" }, - "deprecated": false, - "description": "Middleware for handling `multipart/form-data`.", "devDependencies": { "deep-equal": "^2.0.3", "express": "^4.13.1", @@ -71,24 +46,7 @@ "storage/", "lib/" ], - "homepage": "https://github.com/expressjs/multer#readme", - "keywords": [ - "form", - "post", - "multipart", - "form-data", - "formdata", - "express", - "middleware" - ], - "license": "MIT", - "name": "multer", - "repository": { - "type": "git", - "url": "git+https://github.com/expressjs/multer.git" - }, "scripts": { "test": "standard && mocha" - }, - "version": "1.4.5-lts.1" + } } diff --git a/node_modules/natural/package.json b/node_modules/natural/package.json index 5488992..9d319b9 100644 --- a/node_modules/natural/package.json +++ b/node_modules/natural/package.json @@ -1,35 +1,15 @@ { - "_from": "natural@6.10.0", - "_id": "natural@6.10.0", - "_inBundle": false, - "_integrity": "sha512-jqNcUzuz/BMfa0/FX9GMPSmTCCoeKMif4PIIKTueJcJPLBcLYokqfcv/r47e6dLf+gAgutGciepTYA5pJ+Noow==", - "_location": "/natural", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "natural@6.10.0", - "name": "natural", - "escapedName": "natural", - "rawSpec": "6.10.0", - "saveSpec": null, - "fetchSpec": "6.10.0" + "name": "natural", + "description": "General natural language (tokenizing, stemming (English, Russian, Spanish), part-of-speech tagging, sentiment analysis, classification, inflection, phonetics, tfidf, WordNet, jaro-winkler, Levenshtein distance, Dice's Coefficient) facilities for node.", + "version": "6.10.0", + "homepage": "https://github.com/NaturalNode/natural", + "repository": { + "type": "git", + "url": "git://github.com/NaturalNode/natural.git" }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/natural/-/natural-6.10.0.tgz", - "_shasum": "e69b886d7ef10703137e103ff7e56feec68eddee", - "_spec": "natural@6.10.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Chris Umbel", - "email": "chris@chrisumbel.com" + "engines": { + "node": ">=0.4.10" }, - "bugs": { - "url": "https://github.com/NaturalNode/natural/issues" - }, - "bundleDependencies": false, "dependencies": { "afinn-165": "^1.0.2", "afinn-165-financialmarketnews": "^3.0.0", @@ -40,8 +20,6 @@ "underscore": "^1.9.1", "wordnet-db": "^3.1.11" }, - "deprecated": false, - "description": "General natural language (tokenizing, stemming (English, Russian, Spanish), part-of-speech tagging, sentiment analysis, classification, inflection, phonetics, tfidf, WordNet, jaro-winkler, Levenshtein distance, Dice's Coefficient) facilities for node.", "devDependencies": { "@types/node": "^18.11.18", "browserfs": "^1.4.3", @@ -62,16 +40,33 @@ "webpack": "^4.29.0", "webpack-stream": "^5.2.1" }, - "engines": { - "node": ">=0.4.10" + "standard": { + "ignore": [ + "/lib/natural/brill_pos_tagger/lib/TF_Parser.js", + "/lib/natural/tokenizers/parser_sentence_tokenizer.js" + ], + "env": { + "jasmine": true + } }, - "homepage": "https://github.com/NaturalNode/natural", "jscpd": { "ignore": [ "lib/natural/brill_pos_tagger/lib/TF_Parser.js", "lib/natural/tokenizers/parser_sentence_tokenizer.js" ] }, + "scripts": { + "benchmark": "node benchmarks", + "clean": "rimraf *~ #* *classifier.json", + "test": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js io_spec/*_spec.js spec/*_spec.js", + "coverage": "nyc --reporter=lcov npm test", + "test_io": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js --random=false io_spec/*_spec.js", + "test_browser": "NODE_PATH=. node ./node_modules/gulp/bin/gulp.js", + "lint": "eslint . --ext .ts", + "lint-ts": "ts-standard **/*.ts" + }, + "license": "MIT", + "author": "Chris Umbel ", "keywords": [ "natural language processing", "artifical intelligence", @@ -103,13 +98,13 @@ "sentiment analysis", "maximum entropy modelling" ], - "license": "MIT", "main": "./lib/natural/index.js", + "types": "./lib/natural/index.d.ts", "maintainers": [ { "name": "Chris Umbel", "email": "chris@chrisumbel.com", - "url": "http://www.chrisumbel.com" + "web": "http://www.chrisumbel.com" }, { "name": "Rob Ellis", @@ -123,31 +118,5 @@ "name": "Hugo W.L. ter Doest", "email": "hwl.ter.doest@gmail.com" } - ], - "name": "natural", - "repository": { - "type": "git", - "url": "git://github.com/NaturalNode/natural.git" - }, - "scripts": { - "benchmark": "node benchmarks", - "clean": "rimraf *~ #* *classifier.json", - "coverage": "nyc --reporter=lcov npm test", - "lint": "eslint . --ext .ts", - "lint-ts": "ts-standard **/*.ts", - "test": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js io_spec/*_spec.js spec/*_spec.js", - "test_browser": "NODE_PATH=. node ./node_modules/gulp/bin/gulp.js", - "test_io": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js --random=false io_spec/*_spec.js" - }, - "standard": { - "ignore": [ - "/lib/natural/brill_pos_tagger/lib/TF_Parser.js", - "/lib/natural/tokenizers/parser_sentence_tokenizer.js" - ], - "env": { - "jasmine": true - } - }, - "types": "./lib/natural/index.d.ts", - "version": "6.10.0" + ] } diff --git a/node_modules/negotiator/package.json b/node_modules/negotiator/package.json index b8745b5..297635f 100644 --- a/node_modules/negotiator/package.json +++ b/node_modules/negotiator/package.json @@ -1,65 +1,13 @@ { - "_from": "negotiator@0.6.3", - "_id": "negotiator@0.6.3", - "_inBundle": false, - "_integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "_location": "/negotiator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "negotiator@0.6.3", - "name": "negotiator", - "escapedName": "negotiator", - "rawSpec": "0.6.3", - "saveSpec": null, - "fetchSpec": "0.6.3" - }, - "_requiredBy": [ - "/accepts" - ], - "_resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "_shasum": "58e323a72fedc0d6f9cd4d31fe49f51479590ccd", - "_spec": "negotiator@0.6.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/accepts", - "bugs": { - "url": "https://github.com/jshttp/negotiator/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Federico Romero", - "email": "federico.romero@outboxlabs.com" - }, - { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - } - ], - "deprecated": false, + "name": "negotiator", "description": "HTTP content negotiation", - "devDependencies": { - "eslint": "7.32.0", - "eslint-plugin-markdown": "2.2.1", - "mocha": "9.1.3", - "nyc": "15.1.0" - }, - "engines": { - "node": ">= 0.6" - }, - "files": [ - "lib/", - "HISTORY.md", - "LICENSE", - "index.js", - "README.md" + "version": "0.6.3", + "contributors": [ + "Douglas Christopher Wilson ", + "Federico Romero ", + "Isaac Z. Schlueter (http://blog.izs.me/)" ], - "homepage": "https://github.com/jshttp/negotiator#readme", + "license": "MIT", "keywords": [ "http", "content negotiation", @@ -68,17 +16,27 @@ "accept-encoding", "accept-charset" ], - "license": "MIT", - "name": "negotiator", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/negotiator.git" + "repository": "jshttp/negotiator", + "devDependencies": { + "eslint": "7.32.0", + "eslint-plugin-markdown": "2.2.1", + "mocha": "9.1.3", + "nyc": "15.1.0" + }, + "files": [ + "lib/", + "HISTORY.md", + "LICENSE", + "index.js", + "README.md" + ], + "engines": { + "node": ">= 0.6" }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec --check-leaks --bail test/", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "0.6.3" + } } diff --git a/node_modules/nodemailer/package.json b/node_modules/nodemailer/package.json index e461b4b..9be9fa5 100644 --- a/node_modules/nodemailer/package.json +++ b/node_modules/nodemailer/package.json @@ -1,73 +1,46 @@ { - "_from": "nodemailer@6.9.3", - "_id": "nodemailer@6.9.3", - "_inBundle": false, - "_integrity": "sha512-fy9v3NgTzBngrMFkDsKEj0r02U7jm6XfC3b52eoNV+GCrGj+s8pt5OqhiJdWKuw51zCTdiNR/IUD1z33LIIGpg==", - "_location": "/nodemailer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "nodemailer@6.9.3", "name": "nodemailer", - "escapedName": "nodemailer", - "rawSpec": "6.9.3", - "saveSpec": null, - "fetchSpec": "6.9.3" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.3.tgz", - "_shasum": "e4425b85f05d83c43c5cd81bf84ab968f8ef5cbe", - "_spec": "nodemailer@6.9.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Andris Reinman" - }, - "bugs": { - "url": "https://github.com/nodemailer/nodemailer/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Easy as cake e-mail sending from your Node.js applications", - "devDependencies": { - "@aws-sdk/client-ses": "3.341.0", - "aws-sdk": "2.1386.0", - "bunyan": "1.8.15", - "chai": "4.3.7", - "eslint-config-nodemailer": "1.2.0", - "eslint-config-prettier": "8.8.0", - "grunt": "1.6.1", - "grunt-cli": "1.4.3", - "grunt-eslint": "24.1.0", - "grunt-mocha-test": "0.13.3", - "libbase64": "1.2.1", - "libmime": "5.2.1", - "libqp": "2.0.1", - "mocha": "10.2.0", - "nodemailer-ntlm-auth": "1.0.3", - "proxy": "1.0.2", - "proxy-test-server": "1.0.0", - "sinon": "15.1.0", - "smtp-server": "3.12.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "homepage": "https://nodemailer.com/", - "keywords": [ - "Nodemailer" - ], - "license": "MIT-0", - "main": "lib/nodemailer.js", - "name": "nodemailer", - "repository": { - "type": "git", - "url": "git+https://github.com/nodemailer/nodemailer.git" - }, - "scripts": { - "test": "grunt --trace-warnings" - }, - "version": "6.9.3" + "version": "6.9.3", + "description": "Easy as cake e-mail sending from your Node.js applications", + "main": "lib/nodemailer.js", + "scripts": { + "test": "grunt --trace-warnings" + }, + "repository": { + "type": "git", + "url": "https://github.com/nodemailer/nodemailer.git" + }, + "keywords": [ + "Nodemailer" + ], + "author": "Andris Reinman", + "license": "MIT-0", + "bugs": { + "url": "https://github.com/nodemailer/nodemailer/issues" + }, + "homepage": "https://nodemailer.com/", + "devDependencies": { + "@aws-sdk/client-ses": "3.341.0", + "aws-sdk": "2.1386.0", + "bunyan": "1.8.15", + "chai": "4.3.7", + "eslint-config-nodemailer": "1.2.0", + "eslint-config-prettier": "8.8.0", + "grunt": "1.6.1", + "grunt-cli": "1.4.3", + "grunt-eslint": "24.1.0", + "grunt-mocha-test": "0.13.3", + "libbase64": "1.2.1", + "libmime": "5.2.1", + "libqp": "2.0.1", + "mocha": "10.2.0", + "nodemailer-ntlm-auth": "1.0.3", + "proxy": "1.0.2", + "proxy-test-server": "1.0.0", + "sinon": "15.1.0", + "smtp-server": "3.12.0" + }, + "engines": { + "node": ">=6.0.0" + } } diff --git a/node_modules/nodemon/node_modules/debug/package.json b/node_modules/nodemon/node_modules/debug/package.json index eaaaeed..3bcdc24 100644 --- a/node_modules/nodemon/node_modules/debug/package.json +++ b/node_modules/nodemon/node_modules/debug/package.json @@ -1,56 +1,38 @@ { - "_from": "debug@^4", - "_id": "debug@4.3.4", - "_inBundle": false, - "_integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "_location": "/nodemon/debug", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "debug@^4", - "name": "debug", - "escapedName": "debug", - "rawSpec": "^4", - "saveSpec": null, - "fetchSpec": "^4" + "name": "debug", + "version": "4.3.4", + "repository": { + "type": "git", + "url": "git://github.com/debug-js/debug.git" }, - "_requiredBy": [ - "/nodemon" + "description": "Lightweight debugging utility for Node.js and the browser", + "keywords": [ + "debug", + "log", + "debugger" ], - "_resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "_shasum": "1319f6579357f2338d3337d2cdd4914bb5dcc865", - "_spec": "debug@^4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Josh Junon", - "email": "josh.junon@protonmail.com" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/debug-js/debug/issues" - }, - "bundleDependencies": false, + "files": [ + "src", + "LICENSE", + "README.md" + ], + "author": "Josh Junon ", "contributors": [ - { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io" - }, - { - "name": "Andrew Rhyne", - "email": "rhyneandrew@gmail.com" - } + "TJ Holowaychuk ", + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " ], + "license": "MIT", + "scripts": { + "lint": "xo", + "test": "npm run test:node && npm run test:browser && npm run lint", + "test:node": "istanbul cover _mocha -- test.js", + "test:browser": "karma start --single-run", + "test:coverage": "cat ./coverage/lcov.info | coveralls" + }, "dependencies": { "ms": "2.1.2" }, - "deprecated": false, - "description": "Lightweight debugging utility for Node.js and the browser", "devDependencies": { "brfs": "^2.0.1", "browserify": "^16.2.3", @@ -64,38 +46,14 @@ "mocha-lcov-reporter": "^1.2.0", "xo": "^0.23.0" }, - "engines": { - "node": ">=6.0" - }, - "files": [ - "src", - "LICENSE", - "README.md" - ], - "homepage": "https://github.com/debug-js/debug#readme", - "keywords": [ - "debug", - "log", - "debugger" - ], - "license": "MIT", - "main": "./src/index.js", - "name": "debug", "peerDependenciesMeta": { "supports-color": { "optional": true } }, - "repository": { - "type": "git", - "url": "git://github.com/debug-js/debug.git" - }, - "scripts": { - "lint": "xo", - "test": "npm run test:node && npm run test:browser && npm run lint", - "test:browser": "karma start --single-run", - "test:coverage": "cat ./coverage/lcov.info | coveralls", - "test:node": "istanbul cover _mocha -- test.js" - }, - "version": "4.3.4" + "main": "./src/index.js", + "browser": "./src/browser.js", + "engines": { + "node": ">=6.0" + } } diff --git a/node_modules/nodemon/node_modules/ms/package.json b/node_modules/nodemon/node_modules/ms/package.json index c3f2c48..eea666e 100644 --- a/node_modules/nodemon/node_modules/ms/package.json +++ b/node_modules/nodemon/node_modules/ms/package.json @@ -1,39 +1,16 @@ { - "_from": "ms@2.1.2", - "_id": "ms@2.1.2", - "_inBundle": false, - "_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "_location": "/nodemon/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.1.2", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.1.2", - "saveSpec": null, - "fetchSpec": "2.1.2" - }, - "_requiredBy": [ - "/nodemon/debug" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "_shasum": "d09d1f357b443f493382a8eb3ccd183872ae6009", - "_spec": "ms@2.1.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon/node_modules/debug", - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ms", + "version": "2.1.2", "description": "Tiny millisecond conversion utility", - "devDependencies": { - "eslint": "4.12.1", - "expect.js": "0.3.1", - "husky": "0.14.3", - "lint-staged": "5.0.0", - "mocha": "4.0.1" + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -42,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -54,16 +26,12 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/zeit/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.1.2" + "license": "MIT", + "devDependencies": { + "eslint": "4.12.1", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1" + } } diff --git a/node_modules/nodemon/package.json b/node_modules/nodemon/package.json index f7e5ea8..f99ae46 100644 --- a/node_modules/nodemon/package.json +++ b/node_modules/nodemon/package.json @@ -1,52 +1,46 @@ { - "_from": "nodemon@3.0.3", - "_id": "nodemon@3.0.3", - "_inBundle": false, - "_integrity": "sha512-7jH/NXbFPxVaMwmBCC2B9F/V6X1VkEdNgx3iu9jji8WxWcvhMWkmhNWhI5077zknOnZnBzba9hZP6bCPJLSReQ==", - "_location": "/nodemon", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "nodemon@3.0.3", - "name": "nodemon", - "escapedName": "nodemon", - "rawSpec": "3.0.3", - "saveSpec": null, - "fetchSpec": "3.0.3" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.0.3.tgz", - "_shasum": "244a62d1c690eece3f6165c6cdb0db03ebd80b76", - "_spec": "nodemon@3.0.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", + "name": "nodemon", + "homepage": "https://nodemon.io", "author": { "name": "Remy Sharp", "url": "https://github.com/remy" }, "bin": { - "nodemon": "bin/nodemon.js" + "nodemon": "./bin/nodemon.js" }, - "bugs": { - "url": "https://github.com/remy/nodemon/issues" + "engines": { + "node": ">=10" }, - "bundleDependencies": false, - "dependencies": { - "chokidar": "^3.5.2", - "debug": "^4", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^7.5.3", - "simple-update-notifier": "^2.0.0", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" + "repository": { + "type": "git", + "url": "https://github.com/remy/nodemon.git" }, - "deprecated": false, "description": "Simple monitor script for use during development of a Node.js app.", + "keywords": [ + "cli", + "monitor", + "monitor", + "development", + "restart", + "autoload", + "reload", + "terminal" + ], + "license": "MIT", + "main": "./lib/nodemon", + "scripts": { + "commitmsg": "commitlint -e", + "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js", + "lint": "eslint lib/**/*.js", + "test": "npm run lint && npm run spec", + "spec": "for FILE in test/**/*.test.js; do echo $FILE; TEST=1 mocha --exit --timeout 30000 $FILE; if [ $? -ne 0 ]; then exit 1; fi; sleep 1; done", + "postspec": "npm run clean", + "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md", + "web": "node web", + "semantic-release": "semantic-release", + "prepush": "npm run lint", + "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9" + }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", @@ -60,43 +54,21 @@ "semantic-release": "^18.0.0", "should": "~4.0.0" }, - "engines": { - "node": ">=10" + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^4", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" }, + "version": "3.0.3", "funding": { "type": "opencollective", "url": "https://opencollective.com/nodemon" - }, - "homepage": "https://nodemon.io", - "keywords": [ - "cli", - "monitor", - "monitor", - "development", - "restart", - "autoload", - "reload", - "terminal" - ], - "license": "MIT", - "main": "./lib/nodemon", - "name": "nodemon", - "repository": { - "type": "git", - "url": "git+https://github.com/remy/nodemon.git" - }, - "scripts": { - "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md", - "commitmsg": "commitlint -e", - "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js", - "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9", - "lint": "eslint lib/**/*.js", - "postspec": "npm run clean", - "prepush": "npm run lint", - "semantic-release": "semantic-release", - "spec": "for FILE in test/**/*.test.js; do echo $FILE; TEST=1 mocha --exit --timeout 30000 $FILE; if [ $? -ne 0 ]; then exit 1; fi; sleep 1; done", - "test": "npm run lint && npm run spec", - "web": "node web" - }, - "version": "3.0.3" + } } diff --git a/node_modules/nopt/package.json b/node_modules/nopt/package.json index d05f420..d1118e3 100644 --- a/node_modules/nopt/package.json +++ b/node_modules/nopt/package.json @@ -1,60 +1,12 @@ -{ - "_from": "nopt@~1.0.10", - "_id": "nopt@1.0.10", - "_inBundle": false, - "_integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "_location": "/nopt", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "nopt@~1.0.10", - "name": "nopt", - "escapedName": "nopt", - "rawSpec": "~1.0.10", - "saveSpec": null, - "fetchSpec": "~1.0.10" - }, - "_requiredBy": [ - "/touch" - ], - "_resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "_shasum": "6ddd21bd2a31417b92727dd585f8a6f37608ebee", - "_spec": "nopt@~1.0.10", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/touch", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "bugs": { - "url": "https://github.com/isaacs/nopt/issues" - }, - "bundleDependencies": false, - "dependencies": { - "abbrev": "1" - }, - "deprecated": false, - "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.", - "engines": { - "node": "*" - }, - "homepage": "https://github.com/isaacs/nopt#readme", - "license": { - "type": "MIT", - "url": "https://github.com/isaacs/nopt/raw/master/LICENSE" - }, - "main": "lib/nopt.js", - "name": "nopt", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/isaacs/nopt.git" - }, - "scripts": { - "test": "node lib/nopt.js" - }, - "version": "1.0.10" -} +{ "name" : "nopt" +, "version" : "1.0.10" +, "description" : "Option parsing for Node, supporting types, shorthands, etc. Used by npm." +, "author" : "Isaac Z. Schlueter (http://blog.izs.me/)" +, "main" : "lib/nopt.js" +, "scripts" : { "test" : "node lib/nopt.js" } +, "repository" : "http://github.com/isaacs/nopt" +, "bin" : "./bin/nopt.js" +, "license" : + { "type" : "MIT" + , "url" : "https://github.com/isaacs/nopt/raw/master/LICENSE" } +, "dependencies" : { "abbrev" : "1" }} diff --git a/node_modules/normalize-path/package.json b/node_modules/normalize-path/package.json index 450c67b..ad61098 100644 --- a/node_modules/normalize-path/package.json +++ b/node_modules/normalize-path/package.json @@ -1,60 +1,33 @@ { - "_from": "normalize-path@~3.0.0", - "_id": "normalize-path@3.0.0", - "_inBundle": false, - "_integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "_location": "/normalize-path", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "normalize-path@~3.0.0", - "name": "normalize-path", - "escapedName": "normalize-path", - "rawSpec": "~3.0.0", - "saveSpec": null, - "fetchSpec": "~3.0.0" - }, - "_requiredBy": [ - "/anymatch", - "/chokidar" + "name": "normalize-path", + "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.", + "version": "3.0.0", + "homepage": "https://github.com/jonschlinkert/normalize-path", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Blaine Bublitz (https://twitter.com/BlaineBublitz)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "_shasum": "0dcd69ff23a1c9b11fd0978316644a0388216a65", - "_spec": "normalize-path@~3.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/chokidar", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/normalize-path", "bugs": { "url": "https://github.com/jonschlinkert/normalize-path/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Blaine Bublitz", - "url": "https://twitter.com/BlaineBublitz" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], - "deprecated": false, - "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.", + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "gulp-format-md": "^1.0.0", "minimist": "^1.2.0", "mocha": "^3.5.3" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/normalize-path", "keywords": [ "absolute", "backslash", @@ -76,16 +49,6 @@ "unix", "urix" ], - "license": "MIT", - "main": "index.js", - "name": "normalize-path", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/normalize-path.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -110,6 +73,5 @@ "lint": { "reflinks": true } - }, - "version": "3.0.0" + } } diff --git a/node_modules/object-assign/package.json b/node_modules/object-assign/package.json index fd03a46..503eb1e 100644 --- a/node_modules/object-assign/package.json +++ b/node_modules/object-assign/package.json @@ -1,52 +1,24 @@ { - "_from": "object-assign@^4", - "_id": "object-assign@4.1.1", - "_inBundle": false, - "_integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "_location": "/object-assign", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "object-assign@^4", - "name": "object-assign", - "escapedName": "object-assign", - "rawSpec": "^4", - "saveSpec": null, - "fetchSpec": "^4" - }, - "_requiredBy": [ - "/cors", - "/multer" - ], - "_resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "_shasum": "2109adc7965887cfc05cbbd442cac8bfbb360863", - "_spec": "object-assign@^4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/cors", + "name": "object-assign", + "version": "4.1.1", + "description": "ES2015 `Object.assign()` ponyfill", + "license": "MIT", + "repository": "sindresorhus/object-assign", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/object-assign/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "ES2015 `Object.assign()` ponyfill", - "devDependencies": { - "ava": "^0.16.0", - "lodash": "^4.16.4", - "matcha": "^0.7.0", - "xo": "^0.16.0" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava", + "bench": "matcha bench.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/object-assign#readme", "keywords": [ "object", "assign", @@ -61,15 +33,10 @@ "shim", "browser" ], - "license": "MIT", - "name": "object-assign", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/object-assign.git" - }, - "scripts": { - "bench": "matcha bench.js", - "test": "xo && ava" - }, - "version": "4.1.1" + "devDependencies": { + "ava": "^0.16.0", + "lodash": "^4.16.4", + "matcha": "^0.7.0", + "xo": "^0.16.0" + } } diff --git a/node_modules/object-inspect/package.json b/node_modules/object-inspect/package.json index 40c89cc..02de342 100644 --- a/node_modules/object-inspect/package.json +++ b/node_modules/object-inspect/package.json @@ -1,49 +1,9 @@ { - "_from": "object-inspect@^1.13.1", - "_id": "object-inspect@1.13.1", - "_inBundle": false, - "_integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "_location": "/object-inspect", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "object-inspect@^1.13.1", - "name": "object-inspect", - "escapedName": "object-inspect", - "rawSpec": "^1.13.1", - "saveSpec": null, - "fetchSpec": "^1.13.1" - }, - "_requiredBy": [ - "/side-channel" - ], - "_resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "_shasum": "b96c6109324ccfef6b12216a956ca4dc2ff94bc2", - "_spec": "object-inspect@^1.13.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/side-channel", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "browser": { - "./util.inspect.js": false - }, - "bugs": { - "url": "https://github.com/inspect-js/object-inspect/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "object-inspect", + "version": "1.13.1", "description": "string representations of objects in node and the browser", + "main": "index.js", + "sideEffects": false, "devDependencies": { "@ljharb/eslint-config": "^21.1.0", "@pkgjs/support": "^0.0.6", @@ -67,46 +27,20 @@ "string.prototype.repeat": "^1.0.0", "tape": "^5.7.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/inspect-js/object-inspect", - "keywords": [ - "inspect", - "util.inspect", - "object", - "stringify", - "pretty" - ], - "license": "MIT", - "main": "index.js", - "name": "object-inspect", - "publishConfig": { - "ignore": [ - ".github/workflows", - "./test-core-js.js" - ] - }, - "repository": { - "type": "git", - "url": "git://github.com/inspect-js/object-inspect.git" - }, "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "npx @pkgjs/support validate", - "posttest": "npx aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", "prepack": "npmignore --auto --commentLines=autogenerated", "prepublish": "not-in-publish || npm run prepublishOnly", "prepublishOnly": "safe-publish-latest", "pretest": "npm run lint", + "lint": "eslint --ext=js,mjs .", + "postlint": "npx @pkgjs/support validate", "test": "npm run tests-only && npm run test:corejs", - "test:corejs": "nyc tape test-core-js.js 'test/*.js'", "tests-only": "nyc tape 'test/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" + "test:corejs": "nyc tape test-core-js.js 'test/*.js'", + "posttest": "npx aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" }, - "sideEffects": false, - "support": true, "testling": { "files": [ "test/*.js", @@ -123,5 +57,43 @@ "android/latest" ] }, - "version": "1.13.1" + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/object-inspect.git" + }, + "homepage": "https://github.com/inspect-js/object-inspect", + "keywords": [ + "inspect", + "util.inspect", + "object", + "stringify", + "pretty" + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "browser": { + "./util.inspect.js": false + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "./test-core-js.js" + ] + }, + "support": true } diff --git a/node_modules/on-finished/package.json b/node_modules/on-finished/package.json index 0f75396..644cd81 100644 --- a/node_modules/on-finished/package.json +++ b/node_modules/on-finished/package.json @@ -1,51 +1,16 @@ { - "_from": "on-finished@2.4.1", - "_id": "on-finished@2.4.1", - "_inBundle": false, - "_integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "_location": "/on-finished", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "on-finished@2.4.1", - "name": "on-finished", - "escapedName": "on-finished", - "rawSpec": "2.4.1", - "saveSpec": null, - "fetchSpec": "2.4.1" - }, - "_requiredBy": [ - "/body-parser", - "/express", - "/express/body-parser", - "/finalhandler", - "/send" - ], - "_resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "_shasum": "58c8c44116e54845ad57f14ab10b03533184ac3f", - "_spec": "on-finished@2.4.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "bugs": { - "url": "https://github.com/jshttp/on-finished/issues" - }, - "bundleDependencies": false, + "name": "on-finished", + "description": "Execute a callback when a request closes, finishes, or errors", + "version": "2.4.1", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" ], + "license": "MIT", + "repository": "jshttp/on-finished", "dependencies": { "ee-first": "1.1.1" }, - "deprecated": false, - "description": "Execute a callback when a request closes, finishes, or errors", "devDependencies": { "eslint": "7.32.0", "eslint-config-standard": "14.1.1", @@ -65,18 +30,10 @@ "LICENSE", "index.js" ], - "homepage": "https://github.com/jshttp/on-finished#readme", - "license": "MIT", - "name": "on-finished", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/on-finished.git" - }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec --bail --check-leaks test/", "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "2.4.1" + } } diff --git a/node_modules/parseurl/package.json b/node_modules/parseurl/package.json index 3b7dcc3..6b443ca 100644 --- a/node_modules/parseurl/package.json +++ b/node_modules/parseurl/package.json @@ -1,46 +1,13 @@ { - "_from": "parseurl@~1.3.3", - "_id": "parseurl@1.3.3", - "_inBundle": false, - "_integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "_location": "/parseurl", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "parseurl@~1.3.3", - "name": "parseurl", - "escapedName": "parseurl", - "rawSpec": "~1.3.3", - "saveSpec": null, - "fetchSpec": "~1.3.3" - }, - "_requiredBy": [ - "/express", - "/finalhandler", - "/serve-static" - ], - "_resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "_shasum": "9da19e7bee8d12dff0513ed5b76957793bc2e8d4", - "_spec": "parseurl@~1.3.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "bugs": { - "url": "https://github.com/pillarjs/parseurl/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } - ], - "deprecated": false, + "name": "parseurl", "description": "parse a url with memoization", + "version": "1.3.3", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "repository": "pillarjs/parseurl", + "license": "MIT", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", @@ -54,21 +21,14 @@ "istanbul": "0.4.5", "mocha": "6.1.3" }, - "engines": { - "node": ">= 0.8" - }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], - "homepage": "https://github.com/pillarjs/parseurl#readme", - "license": "MIT", - "name": "parseurl", - "repository": { - "type": "git", - "url": "git+https://github.com/pillarjs/parseurl.git" + "engines": { + "node": ">= 0.8" }, "scripts": { "bench": "node benchmark/index.js", @@ -76,6 +36,5 @@ "test": "mocha --check-leaks --bail --reporter spec test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/" - }, - "version": "1.3.3" + } } diff --git a/node_modules/path-to-regexp/package.json b/node_modules/path-to-regexp/package.json index 9169117..d4e51b5 100644 --- a/node_modules/path-to-regexp/package.json +++ b/node_modules/path-to-regexp/package.json @@ -1,59 +1,30 @@ { - "_from": "path-to-regexp@0.1.7", - "_id": "path-to-regexp@0.1.7", - "_inBundle": false, - "_integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "_location": "/path-to-regexp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-to-regexp@0.1.7", - "name": "path-to-regexp", - "escapedName": "path-to-regexp", - "rawSpec": "0.1.7", - "saveSpec": null, - "fetchSpec": "0.1.7" - }, - "_requiredBy": [ - "/express" + "name": "path-to-regexp", + "description": "Express style path to RegExp utility", + "version": "0.1.7", + "files": [ + "index.js", + "LICENSE" ], - "_resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "_shasum": "df604178005f522f15eb4490e7247a1bfaa67f8c", - "_spec": "path-to-regexp@0.1.7", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "bugs": { - "url": "https://github.com/component/path-to-regexp/issues" + "scripts": { + "test": "istanbul cover _mocha -- -R spec" }, - "bundleDependencies": false, + "keywords": [ + "express", + "regexp" + ], "component": { "scripts": { "path-to-regexp": "index.js" } }, - "deprecated": false, - "description": "Express style path to RegExp utility", - "devDependencies": { - "istanbul": "^0.2.6", - "mocha": "^1.17.1" - }, - "files": [ - "index.js", - "LICENSE" - ], - "homepage": "https://github.com/component/path-to-regexp#readme", - "keywords": [ - "express", - "regexp" - ], "license": "MIT", - "name": "path-to-regexp", "repository": { "type": "git", - "url": "git+https://github.com/component/path-to-regexp.git" + "url": "https://github.com/component/path-to-regexp.git" }, - "scripts": { - "test": "istanbul cover _mocha -- -R spec" - }, - "version": "0.1.7" + "devDependencies": { + "mocha": "^1.17.1", + "istanbul": "^0.2.6" + } } diff --git a/node_modules/path/package.json b/node_modules/path/package.json index d7530a9..16109e3 100644 --- a/node_modules/path/package.json +++ b/node_modules/path/package.json @@ -1,52 +1,24 @@ -{ - "_from": "path@0.12.7", - "_id": "path@0.12.7", - "_inBundle": false, - "_integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", - "_location": "/path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path@0.12.7", - "name": "path", - "escapedName": "path", - "rawSpec": "0.12.7", - "saveSpec": null, - "fetchSpec": "0.12.7" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "_shasum": "d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f", - "_spec": "path@0.12.7", - "_where": "/home/appzia-android/Downloads/7fife_api (1)", - "author": { - "name": "Joyent", - "url": "http://www.joyent.com" - }, - "bugs": { - "url": "https://github.com/jinder/path/issues" - }, - "bundleDependencies": false, - "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" - }, - "deprecated": false, - "description": "Node.JS path module", - "homepage": "http://nodejs.org/docs/latest/api/path.html", - "keywords": [ - "ender", - "path" - ], - "license": "MIT", - "main": "./path.js", - "name": "path", - "repository": { - "type": "git", - "url": "git://github.com/jinder/path.git" - }, - "version": "0.12.7" -} +{ + "author": { + "name": "Joyent", + "url": "http://www.joyent.com" + }, + "name": "path", + "description": "Node.JS path module", + "keywords": [ + "ender", + "path" + ], + "license": "MIT", + "version": "0.12.7", + "homepage": "http://nodejs.org/docs/latest/api/path.html", + "repository": { + "type": "git", + "url": "git://github.com/jinder/path.git" + }, + "main": "./path.js", + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + } +} diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json index 90a3fc4..3db22d4 100644 --- a/node_modules/picomatch/package.json +++ b/node_modules/picomatch/package.json @@ -1,38 +1,30 @@ { - "_from": "picomatch@^2.0.4", - "_id": "picomatch@2.3.1", - "_inBundle": false, - "_integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "_location": "/picomatch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "picomatch@^2.0.4", - "name": "picomatch", - "escapedName": "picomatch", - "rawSpec": "^2.0.4", - "saveSpec": null, - "fetchSpec": "^2.0.4" - }, - "_requiredBy": [ - "/anymatch", - "/readdirp" - ], - "_resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "_shasum": "3ba3833733646d9d3e4995946c1365a67fb07a42", - "_spec": "picomatch@^2.0.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/anymatch", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "picomatch", + "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", + "version": "2.3.1", + "homepage": "https://github.com/micromatch/picomatch", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "funding": "https://github.com/sponsors/jonschlinkert", + "repository": "micromatch/picomatch", "bugs": { "url": "https://github.com/micromatch/picomatch/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", + "license": "MIT", + "files": [ + "index.js", + "lib" + ], + "main": "index.js", + "engines": { + "node": ">=8.6" + }, + "scripts": { + "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --reporter dot", + "test": "npm run lint && npm run mocha", + "test:ci": "npm run test:cover", + "test:cover": "nyc npm run mocha" + }, "devDependencies": { "eslint": "^6.8.0", "fill-range": "^7.0.1", @@ -41,23 +33,11 @@ "nyc": "^15.0.0", "time-require": "github:jonschlinkert/time-require" }, - "engines": { - "node": ">=8.6" - }, - "files": [ - "index.js", - "lib" - ], - "funding": "https://github.com/sponsors/jonschlinkert", - "homepage": "https://github.com/micromatch/picomatch", "keywords": [ "glob", "match", "picomatch" ], - "license": "MIT", - "main": "index.js", - "name": "picomatch", "nyc": { "reporter": [ "html", @@ -65,17 +45,6 @@ "text-summary" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/picomatch.git" - }, - "scripts": { - "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --reporter dot", - "test": "npm run lint && npm run mocha", - "test:ci": "npm run test:cover", - "test:cover": "nyc npm run mocha" - }, "verb": { "toc": { "render": true, @@ -108,6 +77,5 @@ "nanomatch", "picomatch" ] - }, - "version": "2.3.1" + } } diff --git a/node_modules/process-nextick-args/package.json b/node_modules/process-nextick-args/package.json index 642617a..6070b72 100644 --- a/node_modules/process-nextick-args/package.json +++ b/node_modules/process-nextick-args/package.json @@ -1,50 +1,25 @@ { - "_from": "process-nextick-args@~2.0.0", - "_id": "process-nextick-args@2.0.1", - "_inBundle": false, - "_integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "_location": "/process-nextick-args", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "process-nextick-args@~2.0.0", - "name": "process-nextick-args", - "escapedName": "process-nextick-args", - "rawSpec": "~2.0.0", - "saveSpec": null, - "fetchSpec": "~2.0.0" - }, - "_requiredBy": [ - "/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "_shasum": "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2", - "_spec": "process-nextick-args@~2.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/readable-stream", - "author": "", - "bugs": { - "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "process-nextick-args", + "version": "2.0.1", "description": "process.nextTick but always with args", - "devDependencies": { - "tap": "~0.2.6" - }, + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/calvinmetcalf/process-nextick-args", - "license": "MIT", - "main": "index.js", - "name": "process-nextick-args", - "repository": { - "type": "git", - "url": "git+https://github.com/calvinmetcalf/process-nextick-args.git" - }, "scripts": { "test": "node test.js" }, - "version": "2.0.1" + "repository": { + "type": "git", + "url": "https://github.com/calvinmetcalf/process-nextick-args.git" + }, + "author": "", + "license": "MIT", + "bugs": { + "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" + }, + "homepage": "https://github.com/calvinmetcalf/process-nextick-args", + "devDependencies": { + "tap": "~0.2.6" + } } diff --git a/node_modules/process/package.json b/node_modules/process/package.json index f619c4c..d2cfaad 100644 --- a/node_modules/process/package.json +++ b/node_modules/process/package.json @@ -1,59 +1,27 @@ { - "_from": "process@^0.11.1", - "_id": "process@0.11.10", - "_inBundle": false, - "_integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "_location": "/process", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "process@^0.11.1", - "name": "process", - "escapedName": "process", - "rawSpec": "^0.11.1", - "saveSpec": null, - "fetchSpec": "^0.11.1" - }, - "_requiredBy": [ - "/path" - ], - "_resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "_shasum": "7332300e840161bda3e69a1d1d91a7d4bc16f182", - "_spec": "process@^0.11.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/path", - "author": { - "name": "Roman Shtylman", - "email": "shtylman@gmail.com" - }, - "browser": "./browser.js", - "bugs": { - "url": "https://github.com/shtylman/node-process/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "author": "Roman Shtylman ", + "name": "process", "description": "process information for node.js and browsers", - "devDependencies": { - "mocha": "2.2.1", - "zuul": "^3.10.3" - }, - "engines": { - "node": ">= 0.6.0" - }, - "homepage": "https://github.com/shtylman/node-process#readme", "keywords": [ "process" ], - "license": "MIT", - "main": "./index.js", - "name": "process", + "scripts": { + "test": "mocha test.js", + "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js" + }, + "version": "0.11.10", "repository": { "type": "git", "url": "git://github.com/shtylman/node-process.git" }, - "scripts": { - "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js", - "test": "mocha test.js" + "license": "MIT", + "browser": "./browser.js", + "main": "./index.js", + "engines": { + "node": ">= 0.6.0" }, - "version": "0.11.10" + "devDependencies": { + "mocha": "2.2.1", + "zuul": "^3.10.3" + } } diff --git a/node_modules/proxy-addr/package.json b/node_modules/proxy-addr/package.json index 85074b9..24ba8f7 100644 --- a/node_modules/proxy-addr/package.json +++ b/node_modules/proxy-addr/package.json @@ -1,44 +1,22 @@ { - "_from": "proxy-addr@~2.0.7", - "_id": "proxy-addr@2.0.7", - "_inBundle": false, - "_integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "_location": "/proxy-addr", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "proxy-addr@~2.0.7", - "name": "proxy-addr", - "escapedName": "proxy-addr", - "rawSpec": "~2.0.7", - "saveSpec": null, - "fetchSpec": "~2.0.7" - }, - "_requiredBy": [ - "/express" + "name": "proxy-addr", + "description": "Determine address of proxied request", + "version": "2.0.7", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "ip", + "proxy", + "x-forwarded-for" ], - "_resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "_shasum": "f19fe69ceab311eeb94b42e70e8c2070f9ba1025", - "_spec": "proxy-addr@~2.0.7", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/jshttp/proxy-addr/issues" - }, - "bundleDependencies": false, + "repository": "jshttp/proxy-addr", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, - "deprecated": false, - "description": "Determine address of proxied request", "devDependencies": { - "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", + "beautify-benchmark": "0.2.4", "deep-equal": "1.0.1", "eslint": "7.26.0", "eslint-config-standard": "14.1.1", @@ -50,26 +28,14 @@ "mocha": "8.4.0", "nyc": "15.1.0" }, - "engines": { - "node": ">= 0.10" - }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], - "homepage": "https://github.com/jshttp/proxy-addr#readme", - "keywords": [ - "ip", - "proxy", - "x-forwarded-for" - ], - "license": "MIT", - "name": "proxy-addr", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/proxy-addr.git" + "engines": { + "node": ">= 0.10" }, "scripts": { "bench": "node benchmark/index.js", @@ -77,6 +43,5 @@ "test": "mocha --reporter spec --bail --check-leaks test/", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "2.0.7" + } } diff --git a/node_modules/proxy-from-env/package.json b/node_modules/proxy-from-env/package.json index 8a1ba69..be2b845 100644 --- a/node_modules/proxy-from-env/package.json +++ b/node_modules/proxy-from-env/package.json @@ -1,45 +1,17 @@ { - "_from": "proxy-from-env@^1.1.0", - "_id": "proxy-from-env@1.1.0", - "_inBundle": false, - "_integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "_location": "/proxy-from-env", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "proxy-from-env@^1.1.0", - "name": "proxy-from-env", - "escapedName": "proxy-from-env", - "rawSpec": "^1.1.0", - "saveSpec": null, - "fetchSpec": "^1.1.0" - }, - "_requiredBy": [ - "/axios" - ], - "_resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "_shasum": "e102f16ca355424865755d2c9e8ea4f24d58c3e2", - "_spec": "proxy-from-env@^1.1.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/axios", - "author": { - "name": "Rob Wu", - "email": "rob@robwu.nl", - "url": "https://robwu.nl/" - }, - "bugs": { - "url": "https://github.com/Rob--W/proxy-from-env/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "proxy-from-env", + "version": "1.1.0", "description": "Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.", - "devDependencies": { - "coveralls": "^3.0.9", - "eslint": "^6.8.0", - "istanbul": "^0.4.5", - "mocha": "^7.1.0" + "main": "index.js", + "scripts": { + "lint": "eslint *.js", + "test": "mocha ./test.js --reporter spec", + "test-coverage": "istanbul cover ./node_modules/.bin/_mocha -- --reporter spec" + }, + "repository": { + "type": "git", + "url": "https://github.com/Rob--W/proxy-from-env.git" }, - "homepage": "https://github.com/Rob--W/proxy-from-env#readme", "keywords": [ "proxy", "http_proxy", @@ -47,17 +19,16 @@ "no_proxy", "environment" ], + "author": "Rob Wu (https://robwu.nl/)", "license": "MIT", - "main": "index.js", - "name": "proxy-from-env", - "repository": { - "type": "git", - "url": "git+https://github.com/Rob--W/proxy-from-env.git" + "bugs": { + "url": "https://github.com/Rob--W/proxy-from-env/issues" }, - "scripts": { - "lint": "eslint *.js", - "test": "mocha ./test.js --reporter spec", - "test-coverage": "istanbul cover ./node_modules/.bin/_mocha -- --reporter spec" - }, - "version": "1.1.0" + "homepage": "https://github.com/Rob--W/proxy-from-env#readme", + "devDependencies": { + "coveralls": "^3.0.9", + "eslint": "^6.8.0", + "istanbul": "^0.4.5", + "mocha": "^7.1.0" + } } diff --git a/node_modules/pstree.remy/package.json b/node_modules/pstree.remy/package.json index 84bb763..35c7068 100644 --- a/node_modules/pstree.remy/package.json +++ b/node_modules/pstree.remy/package.json @@ -1,64 +1,33 @@ { - "_from": "pstree.remy@^1.1.8", - "_id": "pstree.remy@1.1.8", - "_inBundle": false, - "_integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "_location": "/pstree.remy", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "pstree.remy@^1.1.8", - "name": "pstree.remy", - "escapedName": "pstree.remy", - "rawSpec": "^1.1.8", - "saveSpec": null, - "fetchSpec": "^1.1.8" + "name": "pstree.remy", + "version": "1.1.8", + "main": "lib/index.js", + "prettier": { + "trailingComma": "es5", + "semi": true, + "singleQuote": true }, - "_requiredBy": [ - "/nodemon" + "scripts": { + "test": "tap tests/*.test.js", + "_prepublish": "npm test" + }, + "keywords": [ + "ps", + "pstree", + "ps tree" ], - "_resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "_shasum": "c242224f4a67c21f686839bbdb4ac282b8373d3a", - "_spec": "pstree.remy@^1.1.8", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Remy Sharp" + "author": "Remy Sharp", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/remy/pstree.git" }, - "bugs": { - "url": "https://github.com/remy/pstree/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Collects the full tree of processes from /proc", "devDependencies": { "tap": "^11.0.0" }, "directories": { "test": "tests" }, - "homepage": "https://github.com/remy/pstree#readme", - "keywords": [ - "ps", - "pstree", - "ps tree" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "pstree.remy", - "prettier": { - "trailingComma": "es5", - "semi": true, - "singleQuote": true - }, - "repository": { - "type": "git", - "url": "git+https://github.com/remy/pstree.git" - }, - "scripts": { - "_prepublish": "npm test", - "test": "tap tests/*.test.js" - }, - "version": "1.1.8" + "dependencies": {}, + "description": "Collects the full tree of processes from /proc" } diff --git a/node_modules/punycode/package.json b/node_modules/punycode/package.json index 9ce6d8c..b8b76fc 100644 --- a/node_modules/punycode/package.json +++ b/node_modules/punycode/package.json @@ -1,65 +1,14 @@ { - "_from": "punycode@^2.1.1", - "_id": "punycode@2.3.1", - "_inBundle": false, - "_integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "_location": "/punycode", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "punycode@^2.1.1", - "name": "punycode", - "escapedName": "punycode", - "rawSpec": "^2.1.1", - "saveSpec": null, - "fetchSpec": "^2.1.1" - }, - "_requiredBy": [ - "/tr46" - ], - "_resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "_shasum": "027422e2faec0b25e1549c3e1bd8309b9133b6e5", - "_spec": "punycode@^2.1.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/tr46", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/punycode.js/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - } - ], - "deprecated": false, + "name": "punycode", + "version": "2.3.1", "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", - "devDependencies": { - "codecov": "^3.8.3", - "mocha": "^10.2.0", - "nyc": "^15.1.0" - }, + "homepage": "https://mths.be/punycode", + "main": "punycode.js", + "jsnext:main": "punycode.es6.js", + "module": "punycode.es6.js", "engines": { "node": ">=6" }, - "files": [ - "LICENSE-MIT.txt", - "punycode.js", - "punycode.es6.js" - ], - "homepage": "https://mths.be/punycode", - "jsnext:main": "punycode.es6.js", - "jspm": { - "map": { - "./punycode.js": { - "node": "@node/punycode" - } - } - }, "keywords": [ "punycode", "unicode", @@ -70,16 +19,40 @@ "domain" ], "license": "MIT", - "main": "punycode.js", - "module": "punycode.es6.js", - "name": "punycode", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "contributors": [ + { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + } + ], "repository": { "type": "git", - "url": "git+https://github.com/mathiasbynens/punycode.js.git" + "url": "https://github.com/mathiasbynens/punycode.js.git" }, + "bugs": "https://github.com/mathiasbynens/punycode.js/issues", + "files": [ + "LICENSE-MIT.txt", + "punycode.js", + "punycode.es6.js" + ], "scripts": { - "build": "node scripts/prepublish.js", - "test": "mocha tests" + "test": "mocha tests", + "build": "node scripts/prepublish.js" }, - "version": "2.3.1" + "devDependencies": { + "codecov": "^3.8.3", + "nyc": "^15.1.0", + "mocha": "^10.2.0" + }, + "jspm": { + "map": { + "./punycode.js": { + "node": "@node/punycode" + } + } + } } diff --git a/node_modules/qs/package.json b/node_modules/qs/package.json index 27aec30..2ff42f3 100644 --- a/node_modules/qs/package.json +++ b/node_modules/qs/package.json @@ -1,107 +1,77 @@ { - "_from": "qs@6.11.0", - "_id": "qs@6.11.0", - "_inBundle": false, - "_integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "_location": "/qs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "qs@6.11.0", "name": "qs", - "escapedName": "qs", - "rawSpec": "6.11.0", - "saveSpec": null, - "fetchSpec": "6.11.0" - }, - "_requiredBy": [ - "/body-parser", - "/express", - "/express/body-parser" - ], - "_resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "_shasum": "fd0d963446f7a65e1367e01abd85429453f0c37a", - "_spec": "qs@6.11.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "bugs": { - "url": "https://github.com/ljharb/qs/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jordan Harband", - "email": "ljharb@gmail.com", - "url": "http://ljharb.codes" + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "homepage": "https://github.com/ljharb/qs", + "version": "6.11.0", + "repository": { + "type": "git", + "url": "https://github.com/ljharb/qs.git" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "main": "lib/index.js", + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "keywords": [ + "querystring", + "qs", + "query", + "url", + "parse", + "stringify" + ], + "engines": { + "node": ">=0.6" + }, + "dependencies": { + "side-channel": "^1.0.4" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.0.0", + "aud": "^2.0.0", + "browserify": "^16.5.2", + "eclint": "^2.8.1", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "has-symbols": "^1.0.3", + "iconv-lite": "^0.5.1", + "in-publish": "^2.0.1", + "mkdirp": "^0.5.5", + "npmignore": "^0.3.0", + "nyc": "^10.3.2", + "object-inspect": "^1.12.2", + "qs-iconv": "^1.0.4", + "safe-publish-latest": "^2.0.0", + "safer-buffer": "^2.1.2", + "tape": "^5.5.3" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest && npm run dist", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run --silent readme && npm run --silent lint", + "test": "npm run tests-only", + "tests-only": "nyc tape 'test/**/*.js'", + "posttest": "aud --production", + "readme": "evalmd README.md", + "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", + "lint": "eslint --ext=js,mjs .", + "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js" + }, + "license": "BSD-3-Clause", + "publishConfig": { + "ignore": [ + "!dist/*", + "bower.json", + "component.json", + ".github/workflows" + ] } - ], - "dependencies": { - "side-channel": "^1.0.4" - }, - "deprecated": false, - "description": "A querystring parser that supports nesting and arrays, with a depth limit", - "devDependencies": { - "@ljharb/eslint-config": "^21.0.0", - "aud": "^2.0.0", - "browserify": "^16.5.2", - "eclint": "^2.8.1", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "for-each": "^0.3.3", - "has-symbols": "^1.0.3", - "iconv-lite": "^0.5.1", - "in-publish": "^2.0.1", - "mkdirp": "^0.5.5", - "npmignore": "^0.3.0", - "nyc": "^10.3.2", - "object-inspect": "^1.12.2", - "qs-iconv": "^1.0.4", - "safe-publish-latest": "^2.0.0", - "safer-buffer": "^2.1.2", - "tape": "^5.5.3" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/ljharb/qs", - "keywords": [ - "querystring", - "qs", - "query", - "url", - "parse", - "stringify" - ], - "license": "BSD-3-Clause", - "main": "lib/index.js", - "name": "qs", - "publishConfig": { - "ignore": [ - "!dist/*", - "bower.json", - "component.json", - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/qs.git" - }, - "scripts": { - "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js", - "lint": "eslint --ext=js,mjs .", - "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", - "posttest": "aud --production", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest && npm run dist", - "pretest": "npm run --silent readme && npm run --silent lint", - "readme": "evalmd README.md", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'" - }, - "version": "6.11.0" } diff --git a/node_modules/range-parser/package.json b/node_modules/range-parser/package.json index de27ea2..abea6d8 100644 --- a/node_modules/range-parser/package.json +++ b/node_modules/range-parser/package.json @@ -1,91 +1,44 @@ { - "_from": "range-parser@~1.2.1", - "_id": "range-parser@1.2.1", - "_inBundle": false, - "_integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "_location": "/range-parser", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "range-parser@~1.2.1", - "name": "range-parser", - "escapedName": "range-parser", - "rawSpec": "~1.2.1", - "saveSpec": null, - "fetchSpec": "~1.2.1" - }, - "_requiredBy": [ - "/express", - "/send" - ], - "_resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "_shasum": "3cf37023d199e1c24d1a55b84800c2f3e6468031", - "_spec": "range-parser@~1.2.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca", - "url": "http://tjholowaychuk.com" - }, - "bugs": { - "url": "https://github.com/jshttp/range-parser/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "James Wyatt Cready", - "email": "wyatt.cready@lanetix.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } - ], - "deprecated": false, + "name": "range-parser", + "author": "TJ Holowaychuk (http://tjholowaychuk.com)", "description": "Range header field string parser", + "version": "1.2.1", + "contributors": [ + "Douglas Christopher Wilson ", + "James Wyatt Cready ", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "keywords": [ + "range", + "parser", + "http" + ], + "repository": "jshttp/range-parser", "devDependencies": { "deep-equal": "1.0.1", "eslint": "5.16.0", "eslint-config-standard": "12.0.0", - "eslint-plugin-import": "2.17.2", "eslint-plugin-markdown": "1.0.0", + "eslint-plugin-import": "2.17.2", "eslint-plugin-node": "8.0.1", "eslint-plugin-promise": "4.1.1", "eslint-plugin-standard": "4.0.0", "mocha": "6.1.4", "nyc": "14.1.1" }, - "engines": { - "node": ">= 0.6" - }, "files": [ "HISTORY.md", "LICENSE", "index.js" ], - "homepage": "https://github.com/jshttp/range-parser#readme", - "keywords": [ - "range", - "parser", - "http" - ], - "license": "MIT", - "name": "range-parser", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/range-parser.git" + "engines": { + "node": ">= 0.6" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --reporter spec", "test-cov": "nyc --reporter=html --reporter=text npm test", "test-travis": "nyc --reporter=text npm test" - }, - "version": "1.2.1" + } } diff --git a/node_modules/raw-body/package.json b/node_modules/raw-body/package.json index 566dd6a..aabb1c3 100644 --- a/node_modules/raw-body/package.json +++ b/node_modules/raw-body/package.json @@ -1,54 +1,20 @@ { - "_from": "raw-body@2.5.2", - "_id": "raw-body@2.5.2", - "_inBundle": false, - "_integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "_location": "/raw-body", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "raw-body@2.5.2", - "name": "raw-body", - "escapedName": "raw-body", - "rawSpec": "2.5.2", - "saveSpec": null, - "fetchSpec": "2.5.2" - }, - "_requiredBy": [ - "/body-parser" - ], - "_resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "_shasum": "99febd83b90e08975087e8f1f9419a149366b68a", - "_spec": "raw-body@2.5.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - }, - "bugs": { - "url": "https://github.com/stream-utils/raw-body/issues" - }, - "bundleDependencies": false, + "name": "raw-body", + "description": "Get and validate the raw body of a readable stream.", + "version": "2.5.2", + "author": "Jonathan Ong (http://jongleberry.com)", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Raynos", - "email": "raynos2@gmail.com" - } + "Douglas Christopher Wilson ", + "Raynos " ], + "license": "MIT", + "repository": "stream-utils/raw-body", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, - "deprecated": false, - "description": "Get and validate the raw body of a readable stream.", "devDependencies": { "bluebird": "3.7.2", "eslint": "8.34.0", @@ -74,18 +40,10 @@ "index.d.ts", "index.js" ], - "homepage": "https://github.com/stream-utils/raw-body#readme", - "license": "MIT", - "name": "raw-body", - "repository": { - "type": "git", - "url": "git+https://github.com/stream-utils/raw-body.git" - }, "scripts": { "lint": "eslint .", "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/", "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "2.5.2" + } } diff --git a/node_modules/readable-stream/node_modules/safe-buffer/package.json b/node_modules/readable-stream/node_modules/safe-buffer/package.json index 4982401..623fbc3 100644 --- a/node_modules/readable-stream/node_modules/safe-buffer/package.json +++ b/node_modules/readable-stream/node_modules/safe-buffer/package.json @@ -1,27 +1,7 @@ { - "_from": "safe-buffer@~5.1.1", - "_id": "safe-buffer@5.1.2", - "_inBundle": false, - "_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "_location": "/readable-stream/safe-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "safe-buffer@~5.1.1", - "name": "safe-buffer", - "escapedName": "safe-buffer", - "rawSpec": "~5.1.1", - "saveSpec": null, - "fetchSpec": "~5.1.1" - }, - "_requiredBy": [ - "/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "_shasum": "991ec69d296e0313747d59bdfd2b745c35f8828d", - "_spec": "safe-buffer@~5.1.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/readable-stream", + "name": "safe-buffer", + "description": "Safer Node.js Buffer API", + "version": "5.1.2", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -30,9 +10,6 @@ "bugs": { "url": "https://github.com/feross/safe-buffer/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Safer Node.js Buffer API", "devDependencies": { "standard": "*", "tape": "^4.0.0" @@ -49,14 +26,12 @@ ], "license": "MIT", "main": "index.js", - "name": "safe-buffer", + "types": "index.d.ts", "repository": { "type": "git", "url": "git://github.com/feross/safe-buffer.git" }, "scripts": { "test": "standard && tape test/*.js" - }, - "types": "index.d.ts", - "version": "5.1.2" + } } diff --git a/node_modules/readable-stream/package.json b/node_modules/readable-stream/package.json index f93017c..514c178 100644 --- a/node_modules/readable-stream/package.json +++ b/node_modules/readable-stream/package.json @@ -1,38 +1,8 @@ { - "_from": "readable-stream@^2.2.2", - "_id": "readable-stream@2.3.8", - "_inBundle": false, - "_integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "_location": "/readable-stream", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "readable-stream@^2.2.2", - "name": "readable-stream", - "escapedName": "readable-stream", - "rawSpec": "^2.2.2", - "saveSpec": null, - "fetchSpec": "^2.2.2" - }, - "_requiredBy": [ - "/concat-stream" - ], - "_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "_shasum": "91125e8042bba1b9887f49345f6277027ce8be9b", - "_spec": "readable-stream@^2.2.2", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/concat-stream", - "browser": { - "util": false, - "./readable.js": "./readable-browser.js", - "./writable.js": "./writable-browser.js", - "./duplex.js": "./duplex-browser.js", - "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" - }, - "bugs": { - "url": "https://github.com/nodejs/readable-stream/issues" - }, - "bundleDependencies": false, + "name": "readable-stream", + "version": "2.3.8", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "main": "readable.js", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -42,8 +12,6 @@ "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" }, - "deprecated": false, - "description": "Streams3, a user-land copy of the stream library from Node.js", "devDependencies": { "assert": "^1.4.0", "babel-polyfill": "^6.9.1", @@ -53,29 +21,32 @@ "tap": "^0.7.0", "tape": "^4.8.0" }, - "homepage": "https://github.com/nodejs/readable-stream#readme", + "scripts": { + "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js", + "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", + "cover": "nyc npm test", + "report": "nyc report --reporter=lcov" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejs/readable-stream" + }, "keywords": [ "readable", "stream", "pipe" ], - "license": "MIT", - "main": "readable.js", - "name": "readable-stream", + "browser": { + "util": false, + "./readable.js": "./readable-browser.js", + "./writable.js": "./writable-browser.js", + "./duplex.js": "./duplex-browser.js", + "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" + }, "nyc": { "include": [ "lib/**.js" ] }, - "repository": { - "type": "git", - "url": "git://github.com/nodejs/readable-stream.git" - }, - "scripts": { - "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", - "cover": "nyc npm test", - "report": "nyc report --reporter=lcov", - "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js" - }, - "version": "2.3.8" + "license": "MIT" } diff --git a/node_modules/readdirp/package.json b/node_modules/readdirp/package.json index e8e0cc9..dba5388 100644 --- a/node_modules/readdirp/package.json +++ b/node_modules/readdirp/package.json @@ -1,52 +1,49 @@ { - "_from": "readdirp@~3.6.0", - "_id": "readdirp@3.6.0", - "_inBundle": false, - "_integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "_location": "/readdirp", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "readdirp@~3.6.0", - "name": "readdirp", - "escapedName": "readdirp", - "rawSpec": "~3.6.0", - "saveSpec": null, - "fetchSpec": "~3.6.0" - }, - "_requiredBy": [ - "/chokidar" - ], - "_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "_shasum": "74a370bd857116e245b29cc97340cd431a02a6c7", - "_spec": "readdirp@~3.6.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/chokidar", - "author": { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com" + "name": "readdirp", + "description": "Recursive version of fs.readdir with streaming API.", + "version": "3.6.0", + "homepage": "https://github.com/paulmillr/readdirp", + "repository": { + "type": "git", + "url": "git://github.com/paulmillr/readdirp.git" }, + "license": "MIT", "bugs": { "url": "https://github.com/paulmillr/readdirp/issues" }, - "bundleDependencies": false, + "author": "Thorsten Lorenz (thlorenz.com)", "contributors": [ - { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com" - }, - { - "name": "Paul Miller", - "url": "https://paulmillr.com" - } + "Thorsten Lorenz (thlorenz.com)", + "Paul Miller (https://paulmillr.com)" ], + "main": "index.js", + "engines": { + "node": ">=8.10.0" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "recursive", + "fs", + "stream", + "streams", + "readdir", + "filesystem", + "find", + "filter" + ], + "scripts": { + "dtslint": "dtslint", + "nyc": "nyc", + "mocha": "mocha --exit", + "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", + "test": "npm run lint && nyc npm run mocha" + }, "dependencies": { "picomatch": "^2.2.1" }, - "deprecated": false, - "description": "Recursive version of fs.readdir with streaming API.", "devDependencies": { "@types/node": "^14", "chai": "^4.2", @@ -58,8 +55,11 @@ "rimraf": "^3.0.0", "typescript": "^4.0.3" }, - "engines": { - "node": ">=8.10.0" + "nyc": { + "reporter": [ + "html", + "text" + ] }, "eslintConfig": { "root": true, @@ -118,41 +118,5 @@ "single" ] } - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/paulmillr/readdirp", - "keywords": [ - "recursive", - "fs", - "stream", - "streams", - "readdir", - "filesystem", - "find", - "filter" - ], - "license": "MIT", - "main": "index.js", - "name": "readdirp", - "nyc": { - "reporter": [ - "html", - "text" - ] - }, - "repository": { - "type": "git", - "url": "git://github.com/paulmillr/readdirp.git" - }, - "scripts": { - "dtslint": "dtslint", - "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --exit", - "nyc": "nyc", - "test": "npm run lint && nyc npm run mocha" - }, - "version": "3.6.0" + } } diff --git a/node_modules/safe-buffer/package.json b/node_modules/safe-buffer/package.json index 8f7e74d..f2869e2 100644 --- a/node_modules/safe-buffer/package.json +++ b/node_modules/safe-buffer/package.json @@ -1,31 +1,7 @@ { - "_from": "safe-buffer@5.2.1", - "_id": "safe-buffer@5.2.1", - "_inBundle": false, - "_integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "_location": "/safe-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "safe-buffer@5.2.1", - "name": "safe-buffer", - "escapedName": "safe-buffer", - "rawSpec": "5.2.1", - "saveSpec": null, - "fetchSpec": "5.2.1" - }, - "_requiredBy": [ - "/content-disposition", - "/ecdsa-sig-formatter", - "/express", - "/jwa", - "/jws" - ], - "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "_shasum": "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6", - "_spec": "safe-buffer@5.2.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", + "name": "safe-buffer", + "description": "Safer Node.js Buffer API", + "version": "5.2.1", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -34,13 +10,30 @@ "bugs": { "url": "https://github.com/feross/safe-buffer/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Safer Node.js Buffer API", "devDependencies": { "standard": "*", "tape": "^5.0.0" }, + "homepage": "https://github.com/feross/safe-buffer", + "keywords": [ + "buffer", + "buffer allocate", + "node security", + "safe", + "safe-buffer", + "security", + "uninitialized" + ], + "license": "MIT", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/feross/safe-buffer.git" + }, + "scripts": { + "test": "standard && tape test/*.js" + }, "funding": [ { "type": "github", @@ -54,27 +47,5 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "homepage": "https://github.com/feross/safe-buffer", - "keywords": [ - "buffer", - "buffer allocate", - "node security", - "safe", - "safe-buffer", - "security", - "uninitialized" - ], - "license": "MIT", - "main": "index.js", - "name": "safe-buffer", - "repository": { - "type": "git", - "url": "git://github.com/feross/safe-buffer.git" - }, - "scripts": { - "test": "standard && tape test/*.js" - }, - "types": "index.d.ts", - "version": "5.2.1" + ] } diff --git a/node_modules/safe-stable-stringify/package.json b/node_modules/safe-stable-stringify/package.json index 03c19d5..8eb08d3 100644 --- a/node_modules/safe-stable-stringify/package.json +++ b/node_modules/safe-stable-stringify/package.json @@ -1,36 +1,42 @@ { - "_from": "safe-stable-stringify@^2.2.0", - "_id": "safe-stable-stringify@2.4.3", - "_inBundle": false, - "_integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "_location": "/safe-stable-stringify", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "safe-stable-stringify@^2.2.0", - "name": "safe-stable-stringify", - "escapedName": "safe-stable-stringify", - "rawSpec": "^2.2.0", - "saveSpec": null, - "fetchSpec": "^2.2.0" - }, - "_requiredBy": [ - "/natural" - ], - "_resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "_shasum": "138c84b6f6edb3db5f8ef3ef7115b8f55ccbf886", - "_spec": "safe-stable-stringify@^2.2.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Ruben Bridgewater" - }, - "bugs": { - "url": "https://github.com/BridgeAR/safe-stable-stringify/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "safe-stable-stringify", + "version": "2.4.3", "description": "Deterministic and safely JSON.stringify to quickly serialize JavaScript objects", + "exports": { + "require": "./index.js", + "import": "./esm/wrapper.js" + }, + "keywords": [ + "stable", + "stringify", + "JSON", + "JSON.stringify", + "safe", + "serialize", + "deterministic", + "circular", + "object", + "predicable", + "repeatable", + "fast", + "bigint" + ], + "main": "index.js", + "scripts": { + "test": "standard && tap test.js", + "tap": "tap test.js", + "tap:only": "tap test.js --watch --only", + "benchmark": "node benchmark.js", + "compare": "node compare.js", + "lint": "standard --fix", + "tsc": "tsc --project tsconfig.json" + }, + "engines": { + "node": ">=10" + }, + "author": "Ruben Bridgewater", + "license": "MIT", + "typings": "index.d.ts", "devDependencies": { "@types/json-stable-stringify": "^1.0.34", "@types/node": "^18.11.18", @@ -48,45 +54,12 @@ "tap": "^15.0.9", "typescript": "^4.8.3" }, - "engines": { - "node": ">=10" - }, - "exports": { - "require": "./index.js", - "import": "./esm/wrapper.js" - }, - "homepage": "https://github.com/BridgeAR/safe-stable-stringify#readme", - "keywords": [ - "stable", - "stringify", - "JSON", - "JSON.stringify", - "safe", - "serialize", - "deterministic", - "circular", - "object", - "predicable", - "repeatable", - "fast", - "bigint" - ], - "license": "MIT", - "main": "index.js", - "name": "safe-stable-stringify", "repository": { "type": "git", "url": "git+https://github.com/BridgeAR/safe-stable-stringify.git" }, - "scripts": { - "benchmark": "node benchmark.js", - "compare": "node compare.js", - "lint": "standard --fix", - "tap": "tap test.js", - "tap:only": "tap test.js --watch --only", - "test": "standard && tap test.js", - "tsc": "tsc --project tsconfig.json" + "bugs": { + "url": "https://github.com/BridgeAR/safe-stable-stringify/issues" }, - "typings": "index.d.ts", - "version": "2.4.3" + "homepage": "https://github.com/BridgeAR/safe-stable-stringify#readme" } diff --git a/node_modules/safer-buffer/package.json b/node_modules/safer-buffer/package.json index 6465746..d452b04 100644 --- a/node_modules/safer-buffer/package.json +++ b/node_modules/safer-buffer/package.json @@ -1,38 +1,25 @@ { - "_from": "safer-buffer@>= 2.1.2 < 3", - "_id": "safer-buffer@2.1.2", - "_inBundle": false, - "_integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "_location": "/safer-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "safer-buffer@>= 2.1.2 < 3", - "name": "safer-buffer", - "escapedName": "safer-buffer", - "rawSpec": ">= 2.1.2 < 3", - "saveSpec": null, - "fetchSpec": ">= 2.1.2 < 3" + "name": "safer-buffer", + "version": "2.1.2", + "description": "Modern Buffer API polyfill without footguns", + "main": "safer.js", + "scripts": { + "browserify-test": "browserify --external tape tests.js > browserify-tests.js && tape browserify-tests.js", + "test": "standard && tape tests.js" }, - "_requiredBy": [ - "/iconv-lite" - ], - "_resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "_shasum": "44fa161b0187b9549dd84bb91802f9bd8385cd6a", - "_spec": "safer-buffer@>= 2.1.2 < 3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/iconv-lite", "author": { "name": "Nikita Skovoroda", "email": "chalkerx@gmail.com", "url": "https://github.com/ChALkeR" }, + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/ChALkeR/safer-buffer.git" + }, "bugs": { "url": "https://github.com/ChALkeR/safer-buffer/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Modern Buffer API polyfill without footguns", "devDependencies": { "standard": "^11.0.1", "tape": "^4.9.0" @@ -43,18 +30,5 @@ "tests.js", "dangerous.js", "safer.js" - ], - "homepage": "https://github.com/ChALkeR/safer-buffer#readme", - "license": "MIT", - "main": "safer.js", - "name": "safer-buffer", - "repository": { - "type": "git", - "url": "git+https://github.com/ChALkeR/safer-buffer.git" - }, - "scripts": { - "browserify-test": "browserify --external tape tests.js > browserify-tests.js && tape browserify-tests.js", - "test": "standard && tape tests.js" - }, - "version": "2.1.2" + ] } diff --git a/node_modules/saslprep/package.json b/node_modules/saslprep/package.json index 068265f..23c3562 100644 --- a/node_modules/saslprep/package.json +++ b/node_modules/saslprep/package.json @@ -1,48 +1,42 @@ { - "_from": "saslprep@^1.0.3", - "_id": "saslprep@1.0.3", - "_inBundle": false, - "_integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", - "_location": "/saslprep", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "saslprep@^1.0.3", - "name": "saslprep", - "escapedName": "saslprep", - "rawSpec": "^1.0.3", - "saveSpec": null, - "fetchSpec": "^1.0.3" + "name": "saslprep", + "version": "1.0.3", + "description": "SASLprep: Stringprep Profile for User Names and Passwords, rfc4013.", + "main": "index.js", + "scripts": { + "test": "npm run lint && npm run unit-test", + "lint": "npx eslint --quiet .", + "unit-test": "npx jest", + "gen-code-points": "node generate-code-points.js > code-points.mem" }, - "_requiredBy": [ - "/mongodb" + "repository": { + "type": "git", + "url": "git+https://github.com/reklatsmasters/saslprep.git" + }, + "keywords": [ + "sasl", + "saslprep", + "stringprep", + "rfc4013", + "4013" ], - "_resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", - "_shasum": "4c02f946b56cf54297e347ba1093e7acac4cf226", - "_spec": "saslprep@^1.0.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongodb", - "author": { - "name": "Dmitry Tsvettsikh", - "email": "me@reklatsmasters.com" - }, + "author": "Dmitry Tsvettsikh ", + "license": "MIT", "bugs": { "url": "https://github.com/reklatsmasters/saslprep/issues" }, - "bundleDependencies": false, - "dependencies": { - "sparse-bitfield": "^3.0.3" + "engines": { + "node": ">=6" }, - "deprecated": false, - "description": "SASLprep: Stringprep Profile for User Names and Passwords, rfc4013.", + "homepage": "https://github.com/reklatsmasters/saslprep#readme", "devDependencies": { "@nodertc/eslint-config": "^0.2.1", "eslint": "^5.16.0", "jest": "^23.6.0", "prettier": "^1.14.3" }, - "engines": { - "node": ">=6" + "dependencies": { + "sparse-bitfield": "^3.0.3" }, "eslintConfig": { "extends": "@nodertc", @@ -64,7 +58,6 @@ } ] }, - "homepage": "https://github.com/reklatsmasters/saslprep#readme", "jest": { "modulePaths": [ "" @@ -75,26 +68,5 @@ "testPathIgnorePatterns": [ "/node_modules/" ] - }, - "keywords": [ - "sasl", - "saslprep", - "stringprep", - "rfc4013", - "4013" - ], - "license": "MIT", - "main": "index.js", - "name": "saslprep", - "repository": { - "type": "git", - "url": "git+https://github.com/reklatsmasters/saslprep.git" - }, - "scripts": { - "gen-code-points": "node generate-code-points.js > code-points.mem", - "lint": "npx eslint --quiet .", - "test": "npm run lint && npm run unit-test", - "unit-test": "npx jest" - }, - "version": "1.0.3" + } } diff --git a/node_modules/semver/package.json b/node_modules/semver/package.json index 148cfbb..f00c6bd 100644 --- a/node_modules/semver/package.json +++ b/node_modules/semver/package.json @@ -1,51 +1,29 @@ { - "_from": "semver@^7.3.8", - "_id": "semver@7.6.0", - "_inBundle": false, - "_integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "_location": "/semver", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "semver@^7.3.8", - "name": "semver", - "escapedName": "semver", - "rawSpec": "^7.3.8", - "saveSpec": null, - "fetchSpec": "^7.3.8" - }, - "_requiredBy": [ - "/jsonwebtoken", - "/nodemon", - "/simple-update-notifier" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "_shasum": "1a46a4db4bffcccd97b743b5005c8325f23d4e2d", - "_spec": "semver@^7.3.8", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/jsonwebtoken", - "author": { - "name": "GitHub Inc." - }, - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "deprecated": false, + "name": "semver", + "version": "7.6.0", "description": "The semantic version parser used by npm.", + "main": "index.js", + "scripts": { + "test": "tap", + "snap": "tap", + "lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"", + "postlint": "template-oss-check", + "lintfix": "npm run lint -- --fix", + "posttest": "npm run lint", + "template-oss-apply": "template-oss-apply --force" + }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", "@npmcli/template-oss": "4.21.3", "tap": "^16.0.0" }, - "engines": { - "node": ">=10" + "license": "ISC", + "repository": { + "type": "git", + "url": "https://github.com/npm/node-semver.git" + }, + "bin": { + "semver": "bin/semver.js" }, "files": [ "bin/", @@ -58,23 +36,6 @@ "preload.js", "range.bnf" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "index.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"", - "lintfix": "npm run lint -- --fix", - "postlint": "template-oss-check", - "posttest": "npm run lint", - "snap": "tap", - "template-oss-apply": "template-oss-apply --force", - "test": "tap" - }, "tap": { "timeout": 30, "coverage-map": "map.js", @@ -83,6 +44,13 @@ "tap-snapshots/**" ] }, + "engines": { + "node": ">=10" + }, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "author": "GitHub Inc.", "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "version": "4.21.3", @@ -106,6 +74,5 @@ "/range.bnf" ], "publish": "true" - }, - "version": "7.6.0" + } } diff --git a/node_modules/send/node_modules/ms/package.json b/node_modules/send/node_modules/ms/package.json index 1909b2f..4997189 100644 --- a/node_modules/send/node_modules/ms/package.json +++ b/node_modules/send/node_modules/ms/package.json @@ -1,40 +1,16 @@ { - "_from": "ms@2.1.3", - "_id": "ms@2.1.3", - "_inBundle": false, - "_integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "_location": "/send/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.1.3", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.1.3", - "saveSpec": null, - "fetchSpec": "2.1.3" - }, - "_requiredBy": [ - "/send" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "_shasum": "574c8138ce1d2b5861f0b44579dbadd60c6615b2", - "_spec": "ms@2.1.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/send", - "bugs": { - "url": "https://github.com/vercel/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ms", + "version": "2.1.3", "description": "Tiny millisecond conversion utility", - "devDependencies": { - "eslint": "4.18.2", - "expect.js": "0.3.1", - "husky": "0.14.3", - "lint-staged": "5.0.0", - "mocha": "4.0.1", - "prettier": "2.0.5" + "repository": "vercel/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -43,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/vercel/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -55,16 +26,13 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/vercel/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.1.3" + "license": "MIT", + "devDependencies": { + "eslint": "4.18.2", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1", + "prettier": "2.0.5" + } } diff --git a/node_modules/send/package.json b/node_modules/send/package.json index 6ba368e..7f269d5 100644 --- a/node_modules/send/package.json +++ b/node_modules/send/package.json @@ -1,49 +1,19 @@ { - "_from": "send@0.18.0", - "_id": "send@0.18.0", - "_inBundle": false, - "_integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "_location": "/send", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "send@0.18.0", - "name": "send", - "escapedName": "send", - "rawSpec": "0.18.0", - "saveSpec": null, - "fetchSpec": "0.18.0" - }, - "_requiredBy": [ - "/express", - "/serve-static" - ], - "_resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "_shasum": "670167cc654b05f5aa4a767f9113bb371bc706be", - "_spec": "send@0.18.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "bugs": { - "url": "https://github.com/pillarjs/send/issues" - }, - "bundleDependencies": false, + "name": "send", + "description": "Better streaming static file server with Range and conditional-GET support", + "version": "0.18.0", + "author": "TJ Holowaychuk ", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "James Wyatt Cready", - "email": "jcready@gmail.com" - }, - { - "name": "Jesús Leganés Combarro", - "email": "piranna@gmail.com" - } + "Douglas Christopher Wilson ", + "James Wyatt Cready ", + "Jesús Leganés Combarro " + ], + "license": "MIT", + "repository": "pillarjs/send", + "keywords": [ + "static", + "file", + "server" ], "dependencies": { "debug": "2.6.9", @@ -60,8 +30,6 @@ "range-parser": "~1.2.1", "statuses": "2.0.1" }, - "deprecated": false, - "description": "Better streaming static file server with Range and conditional-GET support", "devDependencies": { "after": "0.8.2", "eslint": "7.32.0", @@ -75,9 +43,6 @@ "nyc": "15.1.0", "supertest": "6.2.2" }, - "engines": { - "node": ">= 0.8.0" - }, "files": [ "HISTORY.md", "LICENSE", @@ -85,23 +50,13 @@ "SECURITY.md", "index.js" ], - "homepage": "https://github.com/pillarjs/send#readme", - "keywords": [ - "static", - "file", - "server" - ], - "license": "MIT", - "name": "send", - "repository": { - "type": "git", - "url": "git+https://github.com/pillarjs/send.git" + "engines": { + "node": ">= 0.8.0" }, "scripts": { "lint": "eslint .", "test": "mocha --check-leaks --reporter spec --bail", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" - }, - "version": "0.18.0" + } } diff --git a/node_modules/serve-static/package.json b/node_modules/serve-static/package.json index 3069ab5..9d935f5 100644 --- a/node_modules/serve-static/package.json +++ b/node_modules/serve-static/package.json @@ -1,43 +1,16 @@ { - "_from": "serve-static@1.15.0", - "_id": "serve-static@1.15.0", - "_inBundle": false, - "_integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "_location": "/serve-static", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "serve-static@1.15.0", - "name": "serve-static", - "escapedName": "serve-static", - "rawSpec": "1.15.0", - "saveSpec": null, - "fetchSpec": "1.15.0" - }, - "_requiredBy": [ - "/express" - ], - "_resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "_shasum": "faaef08cffe0a1a62f60cad0c4e513cff0ac9540", - "_spec": "serve-static@1.15.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/expressjs/serve-static/issues" - }, - "bundleDependencies": false, + "name": "serve-static", + "description": "Serve static files", + "version": "1.15.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "expressjs/serve-static", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" }, - "deprecated": false, - "description": "Serve static files", "devDependencies": { "eslint": "7.32.0", "eslint-config-standard": "14.1.1", @@ -51,20 +24,13 @@ "safe-buffer": "5.2.1", "supertest": "6.2.2" }, - "engines": { - "node": ">= 0.8.0" - }, "files": [ "LICENSE", "HISTORY.md", "index.js" ], - "homepage": "https://github.com/expressjs/serve-static#readme", - "license": "MIT", - "name": "serve-static", - "repository": { - "type": "git", - "url": "git+https://github.com/expressjs/serve-static.git" + "engines": { + "node": ">= 0.8.0" }, "scripts": { "lint": "eslint .", @@ -72,6 +38,5 @@ "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test", "version": "node scripts/version-history.js && git add HISTORY.md" - }, - "version": "1.15.0" + } } diff --git a/node_modules/set-function-length/package.json b/node_modules/set-function-length/package.json index 7a89269..7746dfd 100644 --- a/node_modules/set-function-length/package.json +++ b/node_modules/set-function-length/package.json @@ -1,132 +1,104 @@ { - "_from": "set-function-length@^1.2.1", - "_id": "set-function-length@1.2.1", - "_inBundle": false, - "_integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", - "_location": "/set-function-length", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "set-function-length@^1.2.1", - "name": "set-function-length", - "escapedName": "set-function-length", - "rawSpec": "^1.2.1", - "saveSpec": null, - "fetchSpec": "^1.2.1" - }, - "_requiredBy": [ - "/call-bind" - ], - "_resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", - "_shasum": "47cc5945f2c771e2cf261c6737cf9684a2a5e425", - "_spec": "set-function-length@^1.2.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/call-bind", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/set-function-length/issues" - }, - "bundleDependencies": false, - "dependencies": { - "define-data-property": "^1.1.2", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.1" - }, - "deprecated": false, - "description": "Set a function's length property", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "@types/call-bind": "^1.0.5", - "@types/define-properties": "^1.1.5", - "@types/es-value-fixtures": "^1.4.4", - "@types/for-each": "^0.3.3", - "@types/function-bind": "^1.1.10", - "@types/gopd": "^1.0.3", - "@types/has-property-descriptors": "^1.0.3", - "@types/object-inspect": "^1.8.4", - "@types/tape": "^5.6.4", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "call-bind": "^1.0.6", - "es-value-fixtures": "^1.4.2", - "eslint": "=8.8.0", - "evalmd": "^0.0.19", - "for-each": "^0.3.3", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "object-inspect": "^1.13.1", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.4", - "typescript": "next" - }, - "directories": { - "test": "test" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - ".": "./index.js", - "./env": "./env.js", - "./package.json": "./package.json" - }, - "homepage": "https://github.com/ljharb/set-function-length#readme", - "keywords": [ - "javascript", - "ecmascript", - "set", - "function", - "length", - "function.length" - ], - "license": "MIT", - "main": "index.js", - "name": "set-function-length", - "publishConfig": { - "ignore": [ - ".github/workflows", - "test", - "!*.d.ts", - "!*.d.ts.map" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/set-function-length.git" - }, - "scripts": { - "emit": "npm run tsc -- --noEmit false --emitDeclarationOnly", - "lint": "eslint --ext=js,mjs .", - "postemit": "rm test/*.ts test/*.ts.map", - "postlint": "npm run tsc", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "preemit": "rm -f *.ts *.ts.map test/*.ts test/*.ts.map", - "prelint": "evalmd README.md", - "prepack": "npmignore --auto --commentLines=autogenerated && npm run emit", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "tsc": "tsc -p .", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "sideEffects": false, - "version": "1.2.1" + "name": "set-function-length", + "version": "1.2.1", + "description": "Set a function's length property", + "main": "index.js", + "exports": { + ".": "./index.js", + "./env": "./env.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "directories": { + "test": "test" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated && npm run emit", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "tsc": "tsc -p .", + "preemit": "rm -f *.ts *.ts.map test/*.ts test/*.ts.map", + "emit": "npm run tsc -- --noEmit false --emitDeclarationOnly", + "postemit": "rm test/*.ts test/*.ts.map", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "npm run tsc", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/set-function-length.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "set", + "function", + "length", + "function.length" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/set-function-length/issues" + }, + "homepage": "https://github.com/ljharb/set-function-length#readme", + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/call-bind": "^1.0.5", + "@types/define-properties": "^1.1.5", + "@types/es-value-fixtures": "^1.4.4", + "@types/for-each": "^0.3.3", + "@types/function-bind": "^1.1.10", + "@types/gopd": "^1.0.3", + "@types/has-property-descriptors": "^1.0.3", + "@types/object-inspect": "^1.8.4", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "call-bind": "^1.0.6", + "es-value-fixtures": "^1.4.2", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test", + "!*.d.ts", + "!*.d.ts.map" + ] + } } diff --git a/node_modules/setprototypeof/package.json b/node_modules/setprototypeof/package.json index 2cc2d1b..f20915b 100644 --- a/node_modules/setprototypeof/package.json +++ b/node_modules/setprototypeof/package.json @@ -1,66 +1,38 @@ { - "_from": "setprototypeof@1.2.0", - "_id": "setprototypeof@1.2.0", - "_inBundle": false, - "_integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "_location": "/setprototypeof", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "setprototypeof@1.2.0", - "name": "setprototypeof", - "escapedName": "setprototypeof", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/express", - "/http-errors" - ], - "_resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "_shasum": "66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424", - "_spec": "setprototypeof@1.2.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/http-errors", - "author": { - "name": "Wes Todd" - }, - "bugs": { - "url": "https://github.com/wesleytodd/setprototypeof/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "setprototypeof", + "version": "1.2.0", "description": "A small polyfill for Object.setprototypeof", - "devDependencies": { - "mocha": "^6.1.4", - "standard": "^13.0.2" + "main": "index.js", + "typings": "index.d.ts", + "scripts": { + "test": "standard && mocha", + "testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11", + "testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t", + "node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion", + "node4": "NODE_VER=4 npm run testversion", + "node6": "NODE_VER=6 npm run testversion", + "node9": "NODE_VER=9 npm run testversion", + "node11": "NODE_VER=11 npm run testversion", + "prepublishOnly": "npm t", + "postpublish": "git push origin && git push origin --tags" + }, + "repository": { + "type": "git", + "url": "https://github.com/wesleytodd/setprototypeof.git" }, - "homepage": "https://github.com/wesleytodd/setprototypeof", "keywords": [ "polyfill", "object", "setprototypeof" ], + "author": "Wes Todd", "license": "ISC", - "main": "index.js", - "name": "setprototypeof", - "repository": { - "type": "git", - "url": "git+https://github.com/wesleytodd/setprototypeof.git" + "bugs": { + "url": "https://github.com/wesleytodd/setprototypeof/issues" }, - "scripts": { - "node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion", - "node11": "NODE_VER=11 npm run testversion", - "node4": "NODE_VER=4 npm run testversion", - "node6": "NODE_VER=6 npm run testversion", - "node9": "NODE_VER=9 npm run testversion", - "postpublish": "git push origin && git push origin --tags", - "prepublishOnly": "npm t", - "test": "standard && mocha", - "testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11", - "testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t" - }, - "typings": "index.d.ts", - "version": "1.2.0" + "homepage": "https://github.com/wesleytodd/setprototypeof", + "devDependencies": { + "mocha": "^6.1.4", + "standard": "^13.0.2" + } } diff --git a/node_modules/side-channel/package.json b/node_modules/side-channel/package.json index b35e155..02cffca 100644 --- a/node_modules/side-channel/package.json +++ b/node_modules/side-channel/package.json @@ -1,112 +1,84 @@ { - "_from": "side-channel@^1.0.4", - "_id": "side-channel@1.0.6", - "_inBundle": false, - "_integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "_location": "/side-channel", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "side-channel@^1.0.4", - "name": "side-channel", - "escapedName": "side-channel", - "rawSpec": "^1.0.4", - "saveSpec": null, - "fetchSpec": "^1.0.4" - }, - "_requiredBy": [ - "/qs" - ], - "_resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "_shasum": "abd25fb7cd24baf45466406b1096b7831c9215f2", - "_spec": "side-channel@^1.0.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/qs", - "author": { - "name": "Jordan Harband", - "email": "ljharb@gmail.com" - }, - "auto-changelog": { - "output": "CHANGELOG.md", - "template": "keepachangelog", - "unreleased": false, - "commitLimit": false, - "backfillLimit": false, - "hideCredit": true - }, - "bugs": { - "url": "https://github.com/ljharb/side-channel/issues" - }, - "bundleDependencies": false, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "deprecated": false, - "description": "Store information about any JS value in a side channel. Uses WeakMap if available.", - "devDependencies": { - "@ljharb/eslint-config": "^21.1.0", - "@types/call-bind": "^1.0.5", - "@types/get-intrinsic": "^1.2.2", - "@types/object-inspect": "^1.8.4", - "@types/tape": "^5.6.4", - "aud": "^2.0.4", - "auto-changelog": "^2.4.0", - "eclint": "^2.8.1", - "eslint": "=8.8.0", - "in-publish": "^2.0.1", - "npmignore": "^0.3.1", - "nyc": "^10.3.2", - "safe-publish-latest": "^2.0.0", - "tape": "^5.7.5", - "typescript": "next" - }, - "engines": { - "node": ">= 0.4" - }, - "exports": { - "./package.json": "./package.json", - ".": "./index.js" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/ljharb/side-channel#readme", - "keywords": [ - "weakmap", - "map", - "side", - "channel", - "metadata" - ], - "license": "MIT", - "main": "index.js", - "name": "side-channel", - "publishConfig": { - "ignore": [ - ".github/workflows" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ljharb/side-channel.git" - }, - "scripts": { - "lint": "eslint --ext=js,mjs .", - "postlint": "tsc -p .", - "posttest": "aud --production", - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", - "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", - "prepack": "npmignore --auto --commentLines=autogenerated", - "prepublish": "not-in-publish || npm run prepublishOnly", - "prepublishOnly": "safe-publish-latest", - "pretest": "npm run lint", - "test": "npm run tests-only", - "tests-only": "nyc tape 'test/**/*.js'", - "version": "auto-changelog && git add CHANGELOG.md" - }, - "types": "./index.d.ts", - "version": "1.0.6" + "name": "side-channel", + "version": "1.0.6", + "description": "Store information about any JS value in a side channel. Uses WeakMap if available.", + "main": "index.js", + "exports": { + "./package.json": "./package.json", + ".": "./index.js" + }, + "types": "./index.d.ts", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/side-channel.git" + }, + "keywords": [ + "weakmap", + "map", + "side", + "channel", + "metadata" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/side-channel/issues" + }, + "homepage": "https://github.com/ljharb/side-channel#readme", + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/call-bind": "^1.0.5", + "@types/get-intrinsic": "^1.2.2", + "@types/object-inspect": "^1.8.4", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eclint": "^2.8.1", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.5", + "typescript": "next" + }, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } } diff --git a/node_modules/sift/package.json b/node_modules/sift/package.json index 33ea15b..0f8803d 100644 --- a/node_modules/sift/package.json +++ b/node_modules/sift/package.json @@ -1,37 +1,21 @@ { - "_from": "sift@16.0.1", - "_id": "sift@16.0.1", - "_inBundle": false, - "_integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==", - "_location": "/sift", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "sift@16.0.1", - "name": "sift", - "escapedName": "sift", - "rawSpec": "16.0.1", - "saveSpec": null, - "fetchSpec": "16.0.1" - }, - "_requiredBy": [ - "/mongoose" - ], - "_resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", - "_shasum": "e9c2ccc72191585008cf3e36fc447b2d2633a053", - "_spec": "sift@16.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongoose", + "name": "sift", + "description": "MongoDB query filtering in JavaScript", + "version": "16.0.1", + "repository": "crcn/sift.js", + "sideEffects": false, "author": { "name": "Craig Condon", "email": "craig.j.condon@gmail.com" }, - "bugs": { - "url": "https://github.com/crcn/sift.js/issues" + "license": "MIT", + "engines": {}, + "typings": "./index.d.ts", + "husky": { + "hooks": { + "pre-commit": "pretty-quick --staged" + } }, - "bundleDependencies": false, - "deprecated": false, - "description": "MongoDB query filtering in JavaScript", "devDependencies": { "@rollup/plugin-replace": "^2.3.2", "@rollup/plugin-typescript": "8.2.1", @@ -50,8 +34,19 @@ "tslib": "2.2.0", "typescript": "4.2.4" }, - "engines": {}, + "main": "./index.js", + "module": "./es5m/index.js", "es2015": "./es/index.js", + "scripts": { + "clean": "rimraf lib es5m es", + "prebuild": "npm run clean && npm run build:types", + "build": "rollup -c", + "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --outDir lib", + "test": "npm run test:spec && npm run test:types", + "test:spec": "mocha ./test -R spec", + "test:types": "cd test && tsc types.ts --noEmit", + "prepublishOnly": "npm run build && npm run test" + }, "files": [ "es", "es5m", @@ -63,32 +58,5 @@ "sift.csp.min.js", "sift.min.js", "MIT-LICENSE.txt" - ], - "homepage": "https://github.com/crcn/sift.js#readme", - "husky": { - "hooks": { - "pre-commit": "pretty-quick --staged" - } - }, - "license": "MIT", - "main": "./index.js", - "module": "./es5m/index.js", - "name": "sift", - "repository": { - "type": "git", - "url": "git+https://github.com/crcn/sift.js.git" - }, - "scripts": { - "build": "rollup -c", - "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --outDir lib", - "clean": "rimraf lib es5m es", - "prebuild": "npm run clean && npm run build:types", - "prepublishOnly": "npm run build && npm run test", - "test": "npm run test:spec && npm run test:types", - "test:spec": "mocha ./test -R spec", - "test:types": "cd test && tsc types.ts --noEmit" - }, - "sideEffects": false, - "typings": "./index.d.ts", - "version": "16.0.1" + ] } diff --git a/node_modules/simple-update-notifier/package.json b/node_modules/simple-update-notifier/package.json index 9403f39..4d710a7 100644 --- a/node_modules/simple-update-notifier/package.json +++ b/node_modules/simple-update-notifier/package.json @@ -1,39 +1,32 @@ { - "_from": "simple-update-notifier@^2.0.0", - "_id": "simple-update-notifier@2.0.0", - "_inBundle": false, - "_integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", - "_location": "/simple-update-notifier", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "simple-update-notifier@^2.0.0", - "name": "simple-update-notifier", - "escapedName": "simple-update-notifier", - "rawSpec": "^2.0.0", - "saveSpec": null, - "fetchSpec": "^2.0.0" + "name": "simple-update-notifier", + "version": "2.0.0", + "description": "Simple update notifier to check for npm updates for cli applications", + "main": "build/index.js", + "types": "build/index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/alexbrazier/simple-update-notifier.git" }, - "_requiredBy": [ - "/nodemon" - ], - "_resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", - "_shasum": "d70b92bdab7d6d90dfd73931195a30b6e3d7cebb", - "_spec": "simple-update-notifier@^2.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "alexbrazier" + "homepage": "https://github.com/alexbrazier/simple-update-notifier.git", + "author": "alexbrazier", + "license": "MIT", + "engines": { + "node": ">=10" }, - "bugs": { - "url": "https://github.com/alexbrazier/simple-update-notifier/issues" + "scripts": { + "test": "jest src --noStackTrace", + "build": "rollup -c rollup.config.js --bundleConfigAsCjs", + "prettier:check": "prettier --check src/**/*.ts", + "prettier": "prettier --write src/**/*.ts", + "eslint": "eslint src/**/*.ts", + "lint": "yarn prettier:check && yarn eslint", + "prepare": "yarn lint && yarn build", + "release": "release-it" }, - "bundleDependencies": false, "dependencies": { "semver": "^7.5.3" }, - "deprecated": false, - "description": "Simple update notifier to check for npm updates for cli applications", "devDependencies": { "@babel/preset-env": "^7.22.5", "@babel/preset-typescript": "^7.22.5", @@ -52,8 +45,33 @@ "rollup-plugin-ts": "^3.2.0", "typescript": "^5.1.3" }, - "engines": { - "node": ">=10" + "resolutions": { + "semver": "^7.5.3" + }, + "publishConfig": { + "registry": "https://registry.npmjs.org/" + }, + "files": [ + "build", + "src" + ], + "release-it": { + "git": { + "commitMessage": "chore: release ${version}", + "tagName": "v${version}" + }, + "npm": { + "publish": true + }, + "github": { + "release": true + }, + "plugins": { + "@release-it/conventional-changelog": { + "preset": "angular", + "infile": "CHANGELOG.md" + } + } }, "eslintConfig": { "plugins": [ @@ -78,53 +96,5 @@ } ] } - }, - "files": [ - "build", - "src" - ], - "homepage": "https://github.com/alexbrazier/simple-update-notifier.git", - "license": "MIT", - "main": "build/index.js", - "name": "simple-update-notifier", - "publishConfig": { - "registry": "https://registry.npmjs.org/" - }, - "release-it": { - "git": { - "commitMessage": "chore: release ${version}", - "tagName": "v${version}" - }, - "npm": { - "publish": true - }, - "github": { - "release": true - }, - "plugins": { - "@release-it/conventional-changelog": { - "preset": "angular", - "infile": "CHANGELOG.md" - } - } - }, - "repository": { - "type": "git", - "url": "git+https://github.com/alexbrazier/simple-update-notifier.git" - }, - "resolutions": { - "semver": "^7.5.3" - }, - "scripts": { - "build": "rollup -c rollup.config.js --bundleConfigAsCjs", - "eslint": "eslint src/**/*.ts", - "lint": "yarn prettier:check && yarn eslint", - "prepare": "yarn lint && yarn build", - "prettier": "prettier --write src/**/*.ts", - "prettier:check": "prettier --check src/**/*.ts", - "release": "release-it", - "test": "jest src --noStackTrace" - }, - "types": "build/index.d.ts", - "version": "2.0.0" + } } diff --git a/node_modules/smart-buffer/package.json b/node_modules/smart-buffer/package.json index fb93d26..2f326f2 100644 --- a/node_modules/smart-buffer/package.json +++ b/node_modules/smart-buffer/package.json @@ -1,42 +1,33 @@ { - "_from": "smart-buffer@^4.2.0", - "_id": "smart-buffer@4.2.0", - "_inBundle": false, - "_integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "_location": "/smart-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "smart-buffer@^4.2.0", - "name": "smart-buffer", - "escapedName": "smart-buffer", - "rawSpec": "^4.2.0", - "saveSpec": null, - "fetchSpec": "^4.2.0" - }, - "_requiredBy": [ - "/socks" - ], - "_resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "_shasum": "6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae", - "_spec": "smart-buffer@^4.2.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/socks", - "author": { - "name": "Josh Glazebrook" + "name": "smart-buffer", + "version": "4.2.0", + "description": "smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.", + "main": "build/smartbuffer.js", + "contributors": ["syvita"], + "homepage": "https://github.com/JoshGlazebrook/smart-buffer/", + "repository": { + "type": "git", + "url": "https://github.com/JoshGlazebrook/smart-buffer.git" }, "bugs": { "url": "https://github.com/JoshGlazebrook/smart-buffer/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "syvita" - } + "keywords": [ + "buffer", + "smart", + "packet", + "serialize", + "network", + "cursor", + "simple" ], - "dependencies": {}, - "deprecated": false, - "description": "smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + }, + "author": "Josh Glazebrook", + "license": "MIT", + "readmeFilename": "README.md", "devDependencies": { "@types/chai": "4.1.7", "@types/mocha": "5.2.7", @@ -52,23 +43,16 @@ "tslint": "5.18.0", "typescript": "^3.2.1" }, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" + "typings": "typings/smartbuffer.d.ts", + "dependencies": {}, + "scripts": { + "prepublish": "npm install -g typescript && npm run build", + "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts", + "coverage": "NODE_ENV=test nyc npm test", + "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls", + "lint": "tslint --type-check --project tsconfig.json 'src/**/*.ts'", + "build": "tsc -p ./" }, - "homepage": "https://github.com/JoshGlazebrook/smart-buffer/", - "keywords": [ - "buffer", - "smart", - "packet", - "serialize", - "network", - "cursor", - "simple" - ], - "license": "MIT", - "main": "build/smartbuffer.js", - "name": "smart-buffer", "nyc": { "extension": [ ".ts", @@ -91,19 +75,5 @@ "html" ], "all": true - }, - "repository": { - "type": "git", - "url": "git+https://github.com/JoshGlazebrook/smart-buffer.git" - }, - "scripts": { - "build": "tsc -p ./", - "coverage": "NODE_ENV=test nyc npm test", - "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "tslint --type-check --project tsconfig.json 'src/**/*.ts'", - "prepublish": "npm install -g typescript && npm run build", - "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts" - }, - "typings": "typings/smartbuffer.d.ts", - "version": "4.2.0" + } } diff --git a/node_modules/socks/package.json b/node_modules/socks/package.json index 2060143..db8003e 100644 --- a/node_modules/socks/package.json +++ b/node_modules/socks/package.json @@ -1,45 +1,37 @@ { - "_from": "socks@^2.7.1", - "_id": "socks@2.8.1", - "_inBundle": false, - "_integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==", - "_location": "/socks", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "socks@^2.7.1", - "name": "socks", - "escapedName": "socks", - "rawSpec": "^2.7.1", - "saveSpec": null, - "fetchSpec": "^2.7.1" - }, - "_requiredBy": [ - "/mongodb" - ], - "_resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz", - "_shasum": "22c7d9dd7882649043cba0eafb49ae144e3457af", - "_spec": "socks@^2.7.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongodb", - "author": { - "name": "Josh Glazebrook" + "name": "socks", + "private": false, + "version": "2.8.1", + "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.", + "main": "build/index.js", + "typings": "typings/index.d.ts", + "homepage": "https://github.com/JoshGlazebrook/socks/", + "repository": { + "type": "git", + "url": "https://github.com/JoshGlazebrook/socks.git" }, "bugs": { "url": "https://github.com/JoshGlazebrook/socks/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "castorw" - } + "keywords": [ + "socks", + "proxy", + "tor", + "socks 4", + "socks 5", + "socks4", + "socks5" ], - "dependencies": { - "ip-address": "^9.0.5", - "smart-buffer": "^4.2.0" + "engines": { + "node": ">= 10.0.0", + "npm": ">= 3.0.0" }, - "deprecated": false, - "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.", + "author": "Josh Glazebrook", + "contributors": [ + "castorw" + ], + "license": "MIT", + "readmeFilename": "README.md", "devDependencies": { "@types/mocha": "^10.0.6", "@types/node": "^20.11.17", @@ -51,36 +43,16 @@ "ts-node": "^10.9.1", "typescript": "^5.3.3" }, - "engines": { - "node": ">= 10.0.0", - "npm": ">= 3.0.0" - }, - "homepage": "https://github.com/JoshGlazebrook/socks/", - "keywords": [ - "socks", - "proxy", - "tor", - "socks 4", - "socks 5", - "socks4", - "socks5" - ], - "license": "MIT", - "main": "build/index.js", - "name": "socks", - "private": false, - "repository": { - "type": "git", - "url": "git+https://github.com/JoshGlazebrook/socks.git" + "dependencies": { + "ip-address": "^9.0.5", + "smart-buffer": "^4.2.0" }, "scripts": { - "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p .", - "build-raw": "rm -rf build typings && tsc -p .", - "lint": "eslint 'src/**/*.ts'", "prepublish": "npm install -g typescript && npm run build", + "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts", "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml", - "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts" - }, - "typings": "typings/index.d.ts", - "version": "2.8.1" + "lint": "eslint 'src/**/*.ts'", + "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p .", + "build-raw": "rm -rf build typings && tsc -p ." + } } diff --git a/node_modules/sparse-bitfield/package.json b/node_modules/sparse-bitfield/package.json index 93e6be5..092a23f 100644 --- a/node_modules/sparse-bitfield/package.json +++ b/node_modules/sparse-bitfield/package.json @@ -1,55 +1,27 @@ { - "_from": "sparse-bitfield@^3.0.3", - "_id": "sparse-bitfield@3.0.3", - "_inBundle": false, - "_integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", - "_location": "/sparse-bitfield", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "sparse-bitfield@^3.0.3", - "name": "sparse-bitfield", - "escapedName": "sparse-bitfield", - "rawSpec": "^3.0.3", - "saveSpec": null, - "fetchSpec": "^3.0.3" - }, - "_requiredBy": [ - "/saslprep" - ], - "_resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", - "_shasum": "ff4ae6e68656056ba4b3e792ab3334d38273ca11", - "_spec": "sparse-bitfield@^3.0.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/saslprep", - "author": { - "name": "Mathias Buus", - "url": "@mafintosh" - }, - "bugs": { - "url": "https://github.com/mafintosh/sparse-bitfield/issues" - }, - "bundleDependencies": false, + "name": "sparse-bitfield", + "version": "3.0.3", + "description": "Bitfield that allocates a series of small buffers to support sparse bits without allocating a massive buffer", + "main": "index.js", "dependencies": { "memory-pager": "^1.0.2" }, - "deprecated": false, - "description": "Bitfield that allocates a series of small buffers to support sparse bits without allocating a massive buffer", "devDependencies": { "buffer-alloc": "^1.1.0", "standard": "^9.0.0", "tape": "^4.6.3" }, - "homepage": "https://github.com/mafintosh/sparse-bitfield", - "license": "MIT", - "main": "index.js", - "name": "sparse-bitfield", - "repository": { - "type": "git", - "url": "git+https://github.com/mafintosh/sparse-bitfield.git" - }, "scripts": { "test": "standard && tape test.js" }, - "version": "3.0.3" + "repository": { + "type": "git", + "url": "https://github.com/mafintosh/sparse-bitfield.git" + }, + "author": "Mathias Buus (@mafintosh)", + "license": "MIT", + "bugs": { + "url": "https://github.com/mafintosh/sparse-bitfield/issues" + }, + "homepage": "https://github.com/mafintosh/sparse-bitfield" } diff --git a/node_modules/sprintf-js/package.json b/node_modules/sprintf-js/package.json index 1f9c481..1d3dcf3 100644 --- a/node_modules/sprintf-js/package.json +++ b/node_modules/sprintf-js/package.json @@ -1,37 +1,21 @@ { - "_from": "sprintf-js@^1.1.3", - "_id": "sprintf-js@1.1.3", - "_inBundle": false, - "_integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", - "_location": "/sprintf-js", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "sprintf-js@^1.1.3", - "name": "sprintf-js", - "escapedName": "sprintf-js", - "rawSpec": "^1.1.3", - "saveSpec": null, - "fetchSpec": "^1.1.3" - }, - "_requiredBy": [ - "/ip-address" - ], - "_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", - "_shasum": "4914b903a2f8b685d17fdf78a70e917e872e444a", - "_spec": "sprintf-js@^1.1.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/ip-address", - "author": { - "name": "Alexandru Mărășteanu", - "email": "hello@alexei.ro" - }, - "bugs": { - "url": "https://github.com/alexei/sprintf.js/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "sprintf-js", + "version": "1.1.3", "description": "JavaScript sprintf implementation", + "author": "Alexandru Mărășteanu ", + "main": "src/sprintf.js", + "scripts": { + "test": "mocha test/*.js", + "pretest": "npm run lint", + "lint": "eslint .", + "lint:fix": "eslint --fix ." + }, + "repository": { + "type": "git", + "url": "https://github.com/alexei/sprintf.js.git" + }, + "license": "BSD-3-Clause", + "readmeFilename": "README.md", "devDependencies": { "benchmark": "^2.1.4", "eslint": "^5.10.0", @@ -45,22 +29,7 @@ "gulp-uglify": "^3.0.1", "mocha": "^5.2.0" }, - "homepage": "https://github.com/alexei/sprintf.js#readme", - "license": "BSD-3-Clause", - "main": "src/sprintf.js", - "name": "sprintf-js", "overrides": { "graceful-fs": "^4.2.11" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/alexei/sprintf.js.git" - }, - "scripts": { - "lint": "eslint .", - "lint:fix": "eslint --fix .", - "pretest": "npm run lint", - "test": "mocha test/*.js" - }, - "version": "1.1.3" + } } diff --git a/node_modules/statuses/package.json b/node_modules/statuses/package.json index 304b936..8c3e719 100644 --- a/node_modules/statuses/package.json +++ b/node_modules/statuses/package.json @@ -1,47 +1,24 @@ { - "_from": "statuses@2.0.1", - "_id": "statuses@2.0.1", - "_inBundle": false, - "_integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "_location": "/statuses", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "statuses@2.0.1", - "name": "statuses", - "escapedName": "statuses", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/express", - "/finalhandler", - "/http-errors", - "/send" - ], - "_resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "_shasum": "55cb000ccf1d48728bd23c685a063998cf1a1b63", - "_spec": "statuses@2.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/http-errors", - "bugs": { - "url": "https://github.com/jshttp/statuses/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } - ], - "deprecated": false, + "name": "statuses", "description": "HTTP status utility", + "version": "2.0.1", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "repository": "jshttp/statuses", + "license": "MIT", + "keywords": [ + "http", + "status", + "code" + ], + "files": [ + "HISTORY.md", + "index.js", + "codes.json", + "LICENSE" + ], "devDependencies": { "csv-parse": "4.14.2", "eslint": "7.17.0", @@ -59,24 +36,6 @@ "engines": { "node": ">= 0.8" }, - "files": [ - "HISTORY.md", - "index.js", - "codes.json", - "LICENSE" - ], - "homepage": "https://github.com/jshttp/statuses#readme", - "keywords": [ - "http", - "status", - "code" - ], - "license": "MIT", - "name": "statuses", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/statuses.git" - }, "scripts": { "build": "node scripts/build.js", "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js", @@ -86,6 +45,5 @@ "test-cov": "nyc --reporter=html --reporter=text npm test", "update": "npm run fetch && npm run build", "version": "node scripts/version-history.js && git add HISTORY.md" - }, - "version": "2.0.1" + } } diff --git a/node_modules/stopwords-iso/package.json b/node_modules/stopwords-iso/package.json index e178279..14f5eac 100644 --- a/node_modules/stopwords-iso/package.json +++ b/node_modules/stopwords-iso/package.json @@ -1,118 +1,83 @@ -{ - "_from": "stopwords-iso@^1.1.0", - "_id": "stopwords-iso@1.1.0", - "_inBundle": false, - "_integrity": "sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg==", - "_location": "/stopwords-iso", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "stopwords-iso@^1.1.0", - "name": "stopwords-iso", - "escapedName": "stopwords-iso", - "rawSpec": "^1.1.0", - "saveSpec": null, - "fetchSpec": "^1.1.0" - }, - "_requiredBy": [ - "/natural" - ], - "_resolved": "https://registry.npmjs.org/stopwords-iso/-/stopwords-iso-1.1.0.tgz", - "_shasum": "dc303db6b0842d4290bc1339b4eaf37b94219395", - "_spec": "stopwords-iso@^1.1.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Gene Diaz", - "email": "genediazjr@gmail.com", - "url": "http://genediazjr.com" - }, - "bugs": { - "url": "https://github.com/stopwords-iso/stopwords-iso/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "The most comprehensive collection of stopwords for multiple languages.", - "devDependencies": { - "jsonlint": "1.6.x", - "stopwords-af": "*", - "stopwords-ar": "*", - "stopwords-bg": "*", - "stopwords-bn": "*", - "stopwords-br": "*", - "stopwords-ca": "*", - "stopwords-collator": "*", - "stopwords-cs": "*", - "stopwords-da": "*", - "stopwords-de": "*", - "stopwords-el": "*", - "stopwords-en": "*", - "stopwords-eo": "*", - "stopwords-es": "*", - "stopwords-et": "*", - "stopwords-eu": "*", - "stopwords-fa": "*", - "stopwords-fi": "*", - "stopwords-fr": "*", - "stopwords-ga": "*", - "stopwords-gl": "*", - "stopwords-gu": "*", - "stopwords-ha": "*", - "stopwords-he": "*", - "stopwords-hi": "*", - "stopwords-hr": "*", - "stopwords-hu": "*", - "stopwords-hy": "*", - "stopwords-id": "*", - "stopwords-it": "*", - "stopwords-ja": "*", - "stopwords-ko": "*", - "stopwords-ku": "*", - "stopwords-la": "*", - "stopwords-lt": "*", - "stopwords-lv": "*", - "stopwords-mr": "*", - "stopwords-ms": "*", - "stopwords-nl": "*", - "stopwords-no": "*", - "stopwords-pl": "*", - "stopwords-pt": "*", - "stopwords-ro": "*", - "stopwords-ru": "*", - "stopwords-sk": "*", - "stopwords-sl": "*", - "stopwords-so": "*", - "stopwords-st": "*", - "stopwords-sv": "*", - "stopwords-sw": "*", - "stopwords-th": "*", - "stopwords-tl": "*", - "stopwords-tr": "*", - "stopwords-uk": "*", - "stopwords-ur": "*", - "stopwords-vi": "*", - "stopwords-yo": "*", - "stopwords-zh": "*", - "stopwords-zu": "*" - }, - "engines": { - "node": ">=0.10.0" - }, - "homepage": "https://github.com/stopwords-iso/stopwords-iso#readme", - "keywords": [ - "stopwords", - "stop words" - ], - "license": "MIT", - "main": "stopwords-iso.json", - "name": "stopwords-iso", - "repository": { - "type": "git", - "url": "git://github.com/stopwords-iso/stopwords-iso.git" - }, - "scripts": { - "build": "npm update && stopwords-collator -i", - "test": "npm run build && jsonlint stopwords-iso.json -q" - }, - "version": "1.1.0" -} +{ + "name": "stopwords-iso", + "version": "1.1.0", + "author": "Gene Diaz (http://genediazjr.com)", + "description": "The most comprehensive collection of stopwords for multiple languages.", + "keywords": [ + "stopwords", + "stop words" + ], + "license": "MIT", + "repository": "git://github.com/stopwords-iso/stopwords-iso", + "bugs": "https://github.com/stopwords-iso/stopwords-iso/issues", + "main": "stopwords-iso.json", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "build": "npm update && stopwords-collator -i", + "test": "npm run build && jsonlint stopwords-iso.json -q" + }, + "devDependencies": { + "stopwords-collator": "*", + "stopwords-af": "*", + "stopwords-ar": "*", + "stopwords-bg": "*", + "stopwords-bn": "*", + "stopwords-br": "*", + "stopwords-ca": "*", + "stopwords-cs": "*", + "stopwords-da": "*", + "stopwords-de": "*", + "stopwords-el": "*", + "stopwords-en": "*", + "stopwords-eo": "*", + "stopwords-es": "*", + "stopwords-et": "*", + "stopwords-eu": "*", + "stopwords-fa": "*", + "stopwords-fi": "*", + "stopwords-fr": "*", + "stopwords-ga": "*", + "stopwords-gl": "*", + "stopwords-gu": "*", + "stopwords-ha": "*", + "stopwords-he": "*", + "stopwords-hi": "*", + "stopwords-hr": "*", + "stopwords-hu": "*", + "stopwords-hy": "*", + "stopwords-id": "*", + "stopwords-it": "*", + "stopwords-ja": "*", + "stopwords-ko": "*", + "stopwords-ku": "*", + "stopwords-la": "*", + "stopwords-lt": "*", + "stopwords-lv": "*", + "stopwords-mr": "*", + "stopwords-ms": "*", + "stopwords-nl": "*", + "stopwords-no": "*", + "stopwords-pl": "*", + "stopwords-pt": "*", + "stopwords-ro": "*", + "stopwords-ru": "*", + "stopwords-sk": "*", + "stopwords-sl": "*", + "stopwords-so": "*", + "stopwords-st": "*", + "stopwords-sv": "*", + "stopwords-sw": "*", + "stopwords-th": "*", + "stopwords-tl": "*", + "stopwords-tr": "*", + "stopwords-uk": "*", + "stopwords-ur": "*", + "stopwords-vi": "*", + "stopwords-yo": "*", + "stopwords-zh": "*", + "stopwords-zu": "*", + "jsonlint": "1.6.x" + } +} diff --git a/node_modules/streamsearch/package.json b/node_modules/streamsearch/package.json index df2a1cc..51df8f9 100644 --- a/node_modules/streamsearch/package.json +++ b/node_modules/streamsearch/package.json @@ -1,45 +1,21 @@ { - "_from": "streamsearch@^1.1.0", - "_id": "streamsearch@1.1.0", - "_inBundle": false, - "_integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "_location": "/streamsearch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "streamsearch@^1.1.0", - "name": "streamsearch", - "escapedName": "streamsearch", - "rawSpec": "^1.1.0", - "saveSpec": null, - "fetchSpec": "^1.1.0" - }, - "_requiredBy": [ - "/busboy" - ], - "_resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "_shasum": "404dd1e2247ca94af554e841a8ef0eaa238da764", - "_spec": "streamsearch@^1.1.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/busboy", - "author": { - "name": "Brian White", - "email": "mscdex@mscdex.net" - }, - "bugs": { - "url": "https://github.com/mscdex/streamsearch/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "streamsearch", + "version": "1.1.0", + "author": "Brian White ", "description": "Streaming Boyer-Moore-Horspool searching for node.js", + "main": "./lib/sbmh.js", + "engines": { + "node": ">=10.0.0" + }, "devDependencies": { "@mscdex/eslint-config": "^1.1.0", "eslint": "^7.32.0" }, - "engines": { - "node": ">=10.0.0" + "scripts": { + "test": "node test/test.js", + "lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js lib test", + "lint:fix": "npm run lint -- --fix" }, - "homepage": "https://github.com/mscdex/streamsearch#readme", "keywords": [ "stream", "horspool", @@ -47,22 +23,12 @@ "boyer-moore", "search" ], - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/mscdex/streamsearch/raw/master/LICENSE" - } - ], - "main": "./lib/sbmh.js", - "name": "streamsearch", + "licenses": [{ + "type": "MIT", + "url": "http://github.com/mscdex/streamsearch/raw/master/LICENSE" + }], "repository": { "type": "git", - "url": "git+ssh://git@github.com/mscdex/streamsearch.git" - }, - "scripts": { - "lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js lib test", - "lint:fix": "npm run lint -- --fix", - "test": "node test/test.js" - }, - "version": "1.1.0" + "url": "http://github.com/mscdex/streamsearch.git" + } } diff --git a/node_modules/string_decoder/node_modules/safe-buffer/package.json b/node_modules/string_decoder/node_modules/safe-buffer/package.json index 53d42a3..623fbc3 100644 --- a/node_modules/string_decoder/node_modules/safe-buffer/package.json +++ b/node_modules/string_decoder/node_modules/safe-buffer/package.json @@ -1,27 +1,7 @@ { - "_from": "safe-buffer@~5.1.0", - "_id": "safe-buffer@5.1.2", - "_inBundle": false, - "_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "_location": "/string_decoder/safe-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "safe-buffer@~5.1.0", - "name": "safe-buffer", - "escapedName": "safe-buffer", - "rawSpec": "~5.1.0", - "saveSpec": null, - "fetchSpec": "~5.1.0" - }, - "_requiredBy": [ - "/string_decoder" - ], - "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "_shasum": "991ec69d296e0313747d59bdfd2b745c35f8828d", - "_spec": "safe-buffer@~5.1.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/string_decoder", + "name": "safe-buffer", + "description": "Safer Node.js Buffer API", + "version": "5.1.2", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -30,9 +10,6 @@ "bugs": { "url": "https://github.com/feross/safe-buffer/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Safer Node.js Buffer API", "devDependencies": { "standard": "*", "tape": "^4.0.0" @@ -49,14 +26,12 @@ ], "license": "MIT", "main": "index.js", - "name": "safe-buffer", + "types": "index.d.ts", "repository": { "type": "git", "url": "git://github.com/feross/safe-buffer.git" }, "scripts": { "test": "standard && tape test/*.js" - }, - "types": "index.d.ts", - "version": "5.1.2" + } } diff --git a/node_modules/string_decoder/package.json b/node_modules/string_decoder/package.json index 9483394..518c3eb 100644 --- a/node_modules/string_decoder/package.json +++ b/node_modules/string_decoder/package.json @@ -1,42 +1,25 @@ { - "_from": "string_decoder@~1.1.1", - "_id": "string_decoder@1.1.1", - "_inBundle": false, - "_integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "_location": "/string_decoder", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "string_decoder@~1.1.1", - "name": "string_decoder", - "escapedName": "string_decoder", - "rawSpec": "~1.1.1", - "saveSpec": null, - "fetchSpec": "~1.1.1" - }, - "_requiredBy": [ - "/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "_shasum": "9cf1611ba62685d7030ae9e4ba34149c3af03fc8", - "_spec": "string_decoder@~1.1.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/readable-stream", - "bugs": { - "url": "https://github.com/nodejs/string_decoder/issues" - }, - "bundleDependencies": false, + "name": "string_decoder", + "version": "1.1.1", + "description": "The string_decoder module from Node core", + "main": "lib/string_decoder.js", "dependencies": { "safe-buffer": "~5.1.0" }, - "deprecated": false, - "description": "The string_decoder module from Node core", "devDependencies": { "babel-polyfill": "^6.23.0", "core-util-is": "^1.0.2", "inherits": "^2.0.3", "tap": "~0.4.8" }, + "scripts": { + "test": "tap test/parallel/*.js && node test/verify-dependencies", + "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejs/string_decoder.git" + }, "homepage": "https://github.com/nodejs/string_decoder", "keywords": [ "string", @@ -44,16 +27,5 @@ "browser", "browserify" ], - "license": "MIT", - "main": "lib/string_decoder.js", - "name": "string_decoder", - "repository": { - "type": "git", - "url": "git://github.com/nodejs/string_decoder.git" - }, - "scripts": { - "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", - "test": "tap test/parallel/*.js && node test/verify-dependencies" - }, - "version": "1.1.1" + "license": "MIT" } diff --git a/node_modules/supports-color/package.json b/node_modules/supports-color/package.json index 8ab90e9..ad199f5 100644 --- a/node_modules/supports-color/package.json +++ b/node_modules/supports-color/package.json @@ -1,85 +1,53 @@ { - "_from": "supports-color@^5.5.0", - "_id": "supports-color@5.5.0", - "_inBundle": false, - "_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "_location": "/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "supports-color@^5.5.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "^5.5.0", - "saveSpec": null, - "fetchSpec": "^5.5.0" - }, - "_requiredBy": [ - "/nodemon" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "_shasum": "e2e69a44ac8772f78a1ec0b35b689df6530efc8f", - "_spec": "supports-color@^5.5.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^3.0.0" - }, - "deprecated": false, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^0.25.0", - "import-fresh": "^2.0.0", - "xo": "^0.20.0" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "5.5.0" + "name": "supports-color", + "version": "5.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^3.0.0" + }, + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.20.0" + }, + "browser": "browser.js" } diff --git a/node_modules/sylvester/package.json b/node_modules/sylvester/package.json index 20373a5..f94347a 100644 --- a/node_modules/sylvester/package.json +++ b/node_modules/sylvester/package.json @@ -1,58 +1,20 @@ { - "_from": "sylvester@^0.0.12", - "_id": "sylvester@0.0.12", - "_inBundle": false, - "_integrity": "sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==", - "_location": "/sylvester", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "sylvester@^0.0.12", - "name": "sylvester", - "escapedName": "sylvester", - "rawSpec": "^0.0.12", - "saveSpec": null, - "fetchSpec": "^0.0.12" - }, - "_requiredBy": [ - "/apparatus", - "/natural" - ], - "_resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz", - "_shasum": "5a884415cd2d002c57e7a3aac99462a75ce9fdb4", - "_spec": "sylvester@^0.0.12", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Chris Umbel", - "email": "chris@chrisumbel.com" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "node.js implementation of James Coglan's \"Sylvester\" matrix math library.", + "name": "sylvester", + "description": "node.js implementation of James Coglan's \"Sylvester\" matrix math library.", + "version": "0.0.12", "engines": { "node": ">=0.2.6" }, - "keywords": [ - "matrix", - "vector", - "linear", - "line", - "algebra", - "matrices" - ], + "author": "Chris Umbel ", + "keywords": ["matrix", "vector", "linear", "line", "algebra", "matrices"], "main": "./lib/node-sylvester/index.js", - "maintainers": [ - { - "name": "Chris Umbel", - "email": "chris@chrisumbel.com", - "url": "http://www.chrisumbel.com" - }, - { - "name": "Rob Ellis", - "email": "rob@silentrob.me" - } - ], - "name": "sylvester", - "version": "0.0.12" + "maintainers": [{ + "name": "Chris Umbel", + "email": "chris@chrisumbel.com", + "web": "http://www.chrisumbel.com" + }, + { + "name": "Rob Ellis", + "email": "rob@silentrob.me" + }] } diff --git a/node_modules/to-regex-range/package.json b/node_modules/to-regex-range/package.json index 639d152..4ef194f 100644 --- a/node_modules/to-regex-range/package.json +++ b/node_modules/to-regex-range/package.json @@ -1,50 +1,31 @@ { - "_from": "to-regex-range@^5.0.1", - "_id": "to-regex-range@5.0.1", - "_inBundle": false, - "_integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "_location": "/to-regex-range", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "to-regex-range@^5.0.1", - "name": "to-regex-range", - "escapedName": "to-regex-range", - "rawSpec": "^5.0.1", - "saveSpec": null, - "fetchSpec": "^5.0.1" - }, - "_requiredBy": [ - "/fill-range" + "name": "to-regex-range", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "version": "5.0.1", + "homepage": "https://github.com/micromatch/to-regex-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Rouven Weßling (www.rouvenwessling.de)" ], - "_resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "_shasum": "1648c44aae7c8d988a326018ed72f5b4dd0392e4", - "_spec": "to-regex-range@^5.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/fill-range", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "is-number": "^7.0.0" }, - "deprecated": false, - "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", "devDependencies": { "fill-range": "^6.0.0", "gulp-format-md": "^2.0.0", @@ -52,13 +33,6 @@ "text-table": "^0.2.0", "time-diff": "^0.3.1" }, - "engines": { - "node": ">=8.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/to-regex-range", "keywords": [ "bash", "date", @@ -84,16 +58,6 @@ "regular expression", "sequence" ], - "license": "MIT", - "main": "index.js", - "name": "to-regex-range", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/to-regex-range.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "layout": "default", "toc": false, @@ -120,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } diff --git a/node_modules/toidentifier/package.json b/node_modules/toidentifier/package.json index b29cdea..42db1a6 100644 --- a/node_modules/toidentifier/package.json +++ b/node_modules/toidentifier/package.json @@ -1,48 +1,13 @@ { - "_from": "toidentifier@1.0.1", - "_id": "toidentifier@1.0.1", - "_inBundle": false, - "_integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "_location": "/toidentifier", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "toidentifier@1.0.1", - "name": "toidentifier", - "escapedName": "toidentifier", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/http-errors" - ], - "_resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "_shasum": "3be34321a88a820ed1bd80dfaa33e479fbb8dd35", - "_spec": "toidentifier@1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/http-errors", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/component/toidentifier/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Nick Baugh", - "email": "niftylettuce@gmail.com", - "url": "http://niftylettuce.com/" - } - ], - "deprecated": false, + "name": "toidentifier", "description": "Convert a string of words to a JavaScript identifier", + "version": "1.0.1", + "author": "Douglas Christopher Wilson ", + "contributors": [ + "Douglas Christopher Wilson ", + "Nick Baugh (http://niftylettuce.com/)" + ], + "repository": "component/toidentifier", "devDependencies": { "eslint": "7.32.0", "eslint-config-standard": "14.1.1", @@ -57,24 +22,17 @@ "engines": { "node": ">=0.6" }, + "license": "MIT", "files": [ "HISTORY.md", "LICENSE", "index.js" ], - "homepage": "https://github.com/component/toidentifier#readme", - "license": "MIT", - "name": "toidentifier", - "repository": { - "type": "git", - "url": "git+https://github.com/component/toidentifier.git" - }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec --bail --check-leaks test/", "test-ci": "nyc --reporter=lcov --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test", "version": "node scripts/version-history.js && git add HISTORY.md" - }, - "version": "1.0.1" + } } diff --git a/node_modules/touch/package.json b/node_modules/touch/package.json index 659f954..05608de 100644 --- a/node_modules/touch/package.json +++ b/node_modules/touch/package.json @@ -1,44 +1,22 @@ { - "_from": "touch@^3.1.0", - "_id": "touch@3.1.0", - "_inBundle": false, - "_integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "_location": "/touch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "touch@^3.1.0", - "name": "touch", - "escapedName": "touch", - "rawSpec": "^3.1.0", - "saveSpec": null, - "fetchSpec": "^3.1.0" - }, - "_requiredBy": [ - "/nodemon" - ], - "_resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "_shasum": "fe365f5f75ec9ed4e56825e0bb76d24ab74af83b", - "_spec": "touch@^3.1.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "name": "touch", + "description": "like touch(1) in node", + "version": "3.1.0", + "repository": "git://github.com/isaacs/node-touch.git", "bin": { - "nodetouch": "bin/nodetouch.js" + "nodetouch": "./bin/nodetouch.js" }, - "bugs": { - "url": "https://github.com/isaacs/node-touch/issues" - }, - "bundleDependencies": false, "dependencies": { "nopt": "~1.0.10" }, - "deprecated": false, - "description": "like touch(1) in node", + "license": "ISC", + "scripts": { + "test": "tap test/*.js --100 -J", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, "devDependencies": { "mutate-fs": "^1.1.0", "tap": "^10.7.0" @@ -46,19 +24,5 @@ "files": [ "index.js", "bin/nodetouch.js" - ], - "homepage": "https://github.com/isaacs/node-touch#readme", - "license": "ISC", - "name": "touch", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-touch.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap test/*.js --100 -J" - }, - "version": "3.1.0" + ] } diff --git a/node_modules/tr46/package.json b/node_modules/tr46/package.json index c14e62a..8e79ba6 100644 --- a/node_modules/tr46/package.json +++ b/node_modules/tr46/package.json @@ -1,64 +1,24 @@ { - "_from": "tr46@^3.0.0", - "_id": "tr46@3.0.0", - "_inBundle": false, - "_integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "_location": "/tr46", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "tr46@^3.0.0", - "name": "tr46", - "escapedName": "tr46", - "rawSpec": "^3.0.0", - "saveSpec": null, - "fetchSpec": "^3.0.0" - }, - "_requiredBy": [ - "/whatwg-url" - ], - "_resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "_shasum": "555c4e297a950617e8eeddef633c87d4d9d6cbf9", - "_spec": "tr46@^3.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/whatwg-url", - "author": { - "name": "Sebastian Mayr", - "email": "npm@smayr.name" - }, - "bugs": { - "url": "https://github.com/jsdom/tr46/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Timothy Gu", - "email": "timothygu99@gmail.com" - } - ], - "dependencies": { - "punycode": "^2.1.1" - }, - "deprecated": false, - "description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing", - "devDependencies": { - "@domenic/eslint-config": "^1.4.0", - "@unicode/unicode-14.0.0": "^1.2.1", - "eslint": "^7.32.0", - "minipass-fetch": "^1.4.1", - "mocha": "^9.1.1", - "regenerate": "^1.4.2" - }, + "name": "tr46", + "version": "3.0.0", "engines": { "node": ">=12" }, + "description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing", + "main": "index.js", "files": [ "index.js", "lib/mappingTable.json", "lib/regexes.js", "lib/statusMapping.js" ], - "homepage": "https://github.com/jsdom/tr46#readme", + "scripts": { + "test": "mocha", + "lint": "eslint .", + "pretest": "node scripts/getLatestTests.js", + "prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js" + }, + "repository": "https://github.com/jsdom/tr46", "keywords": [ "unicode", "tr46", @@ -67,19 +27,21 @@ "url", "whatwg" ], + "author": "Sebastian Mayr ", + "contributors": [ + "Timothy Gu " + ], "license": "MIT", - "main": "index.js", - "name": "tr46", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/tr46.git" + "dependencies": { + "punycode": "^2.1.1" }, - "scripts": { - "lint": "eslint .", - "prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js", - "pretest": "node scripts/getLatestTests.js", - "test": "mocha" + "devDependencies": { + "@domenic/eslint-config": "^1.4.0", + "@unicode/unicode-14.0.0": "^1.2.1", + "eslint": "^7.32.0", + "minipass-fetch": "^1.4.1", + "mocha": "^9.1.1", + "regenerate": "^1.4.2" }, - "unicodeVersion": "14.0.0", - "version": "3.0.0" + "unicodeVersion": "14.0.0" } diff --git a/node_modules/type-is/package.json b/node_modules/type-is/package.json index 99160f9..97ba5f1 100644 --- a/node_modules/type-is/package.json +++ b/node_modules/type-is/package.json @@ -1,51 +1,17 @@ { - "_from": "type-is@~1.6.18", - "_id": "type-is@1.6.18", - "_inBundle": false, - "_integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "_location": "/type-is", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "type-is@~1.6.18", - "name": "type-is", - "escapedName": "type-is", - "rawSpec": "~1.6.18", - "saveSpec": null, - "fetchSpec": "~1.6.18" - }, - "_requiredBy": [ - "/body-parser", - "/express", - "/express/body-parser", - "/multer" - ], - "_resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "_shasum": "4e552cd05df09467dcbc4ef739de89f2cf37c131", - "_spec": "type-is@~1.6.18", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "bugs": { - "url": "https://github.com/jshttp/type-is/issues" - }, - "bundleDependencies": false, + "name": "type-is", + "description": "Infer the content-type of a request.", + "version": "1.6.18", "contributors": [ - { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - { - "name": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com" - } + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" ], + "license": "MIT", + "repository": "jshttp/type-is", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" }, - "deprecated": false, - "description": "Infer the content-type of a request.", "devDependencies": { "eslint": "5.16.0", "eslint-config-standard": "12.0.0", @@ -65,23 +31,15 @@ "HISTORY.md", "index.js" ], - "homepage": "https://github.com/jshttp/type-is#readme", - "keywords": [ - "content", - "type", - "checking" - ], - "license": "MIT", - "name": "type-is", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/type-is.git" - }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --reporter spec --check-leaks --bail test/", "test-cov": "nyc --reporter=html --reporter=text npm test", "test-travis": "nyc --reporter=text npm test" }, - "version": "1.6.18" + "keywords": [ + "content", + "type", + "checking" + ] } diff --git a/node_modules/typedarray/package.json b/node_modules/typedarray/package.json index 31f145d..a7854a0 100644 --- a/node_modules/typedarray/package.json +++ b/node_modules/typedarray/package.json @@ -1,41 +1,18 @@ { - "_from": "typedarray@^0.0.6", - "_id": "typedarray@0.0.6", - "_inBundle": false, - "_integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "_location": "/typedarray", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "typedarray@^0.0.6", - "name": "typedarray", - "escapedName": "typedarray", - "rawSpec": "^0.0.6", - "saveSpec": null, - "fetchSpec": "^0.0.6" - }, - "_requiredBy": [ - "/concat-stream" - ], - "_resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "_shasum": "867ac74e3864187b1d3d47d996a78ec5c8830777", - "_spec": "typedarray@^0.0.6", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/concat-stream", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/substack/typedarray/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "typedarray", + "version": "0.0.6", "description": "TypedArray polyfill for old browsers", + "main": "index.js", "devDependencies": { "tape": "~2.3.2" }, + "scripts": { + "test": "tape test/*.js test/server/*.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/typedarray.git" + }, "homepage": "https://github.com/substack/typedarray", "keywords": [ "ArrayBuffer", @@ -53,16 +30,12 @@ "array", "polyfill" ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, "license": "MIT", - "main": "index.js", - "name": "typedarray", - "repository": { - "type": "git", - "url": "git://github.com/substack/typedarray.git" - }, - "scripts": { - "test": "tape test/*.js test/server/*.js" - }, "testling": { "files": "test/*.js", "browsers": [ @@ -78,6 +51,5 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "0.0.6" + } } diff --git a/node_modules/undefsafe/package.json b/node_modules/undefsafe/package.json index e52914a..a454233 100644 --- a/node_modules/undefsafe/package.json +++ b/node_modules/undefsafe/package.json @@ -1,65 +1,34 @@ { - "_from": "undefsafe@^2.0.5", - "_id": "undefsafe@2.0.5", - "_inBundle": false, - "_integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "_location": "/undefsafe", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "undefsafe@^2.0.5", - "name": "undefsafe", - "escapedName": "undefsafe", - "rawSpec": "^2.0.5", - "saveSpec": null, - "fetchSpec": "^2.0.5" - }, - "_requiredBy": [ - "/nodemon" - ], - "_resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "_shasum": "38733b9327bdcd226db889fb723a6efd162e6e2c", - "_spec": "undefsafe@^2.0.5", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/nodemon", - "author": { - "name": "Remy Sharp" - }, - "bugs": { - "url": "https://github.com/remy/undefsafe/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "undefsafe", "description": "Undefined safe way of extracting object properties", - "devDependencies": { - "semantic-release": "^18.0.0", - "tap": "^5.7.1", - "tap-only": "0.0.5" - }, + "main": "lib/undefsafe.js", + "tonicExampleFilename": "example.js", "directories": { "test": "test" }, - "homepage": "https://github.com/remy/undefsafe#readme", - "keywords": [ - "undefined" - ], - "license": "MIT", - "main": "lib/undefsafe.js", - "name": "undefsafe", + "scripts": { + "test": "tap test/**/*.test.js -R spec", + "cover": "tap test/*.test.js --cov --coverage-report=lcov", + "semantic-release": "semantic-release" + }, "prettier": { "trailingComma": "none", "singleQuote": true }, "repository": { "type": "git", - "url": "git+https://github.com/remy/undefsafe.git" + "url": "https://github.com/remy/undefsafe.git" }, - "scripts": { - "cover": "tap test/*.test.js --cov --coverage-report=lcov", - "semantic-release": "semantic-release", - "test": "tap test/**/*.test.js -R spec" + "keywords": [ + "undefined" + ], + "author": "Remy Sharp", + "license": "MIT", + "devDependencies": { + "semantic-release": "^18.0.0", + "tap": "^5.7.1", + "tap-only": "0.0.5" }, - "tonicExampleFilename": "example.js", + "dependencies": {}, "version": "2.0.5" } diff --git a/node_modules/underscore/package.json b/node_modules/underscore/package.json index 6bb6a8e..bbc69cd 100644 --- a/node_modules/underscore/package.json +++ b/node_modules/underscore/package.json @@ -1,56 +1,24 @@ { - "_from": "underscore@^1.9.1", - "_id": "underscore@1.13.6", - "_inBundle": false, - "_integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", - "_location": "/underscore", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "underscore@^1.9.1", - "name": "underscore", - "escapedName": "underscore", - "rawSpec": "^1.9.1", - "saveSpec": null, - "fetchSpec": "^1.9.1" - }, - "_requiredBy": [ - "/natural" - ], - "_resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", - "_shasum": "04786a1f589dc6c09f761fc5f45b89e935136441", - "_spec": "underscore@^1.9.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Jeremy Ashkenas", - "email": "jeremy@documentcloud.org" - }, - "bugs": { - "url": "https://github.com/jashkenas/underscore/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "underscore", "description": "JavaScript's functional programming helper library.", - "devDependencies": { - "coveralls": "^3.1.1", - "cpy-cli": "^3.1.1", - "docco": "^0.8.0", - "eslint": "^6.8.0", - "eslint-plugin-import": "^2.20.1", - "glob": "^7.1.6", - "gzip-size-cli": "^1.0.0", - "husky": "^4.2.3", - "karma": "^4.4.1", - "karma-qunit": "^4.1.2", - "karma-sauce-launcher": "^4.3.6", - "nyc": "^15.1.0", - "patch-package": "^6.4.7", - "pretty-bytes-cli": "^1.0.0", - "qunit": "2.10.1", - "rollup": "^2.40.0", - "terser": "^4.6.13" + "version": "1.13.6", + "author": "Jeremy Ashkenas ", + "license": "MIT", + "homepage": "https://underscorejs.org", + "repository": { + "type": "git", + "url": "git://github.com/jashkenas/underscore.git" }, + "keywords": [ + "util", + "functional", + "server", + "client", + "browser" + ], + "main": "underscore-umd.js", + "module": "modules/index-all.js", + "type": "commonjs", "exports": { ".": { "import": { @@ -82,6 +50,49 @@ "./cjs/*": "./cjs/*", "./package.json": "./package.json" }, + "devDependencies": { + "coveralls": "^3.1.1", + "cpy-cli": "^3.1.1", + "docco": "^0.8.0", + "eslint": "^6.8.0", + "eslint-plugin-import": "^2.20.1", + "glob": "^7.1.6", + "gzip-size-cli": "^1.0.0", + "husky": "^4.2.3", + "karma": "^4.4.1", + "karma-qunit": "^4.1.2", + "karma-sauce-launcher": "^4.3.6", + "nyc": "^15.1.0", + "patch-package": "^6.4.7", + "pretty-bytes-cli": "^1.0.0", + "qunit": "2.10.1", + "rollup": "^2.40.0", + "terser": "^4.6.13" + }, + "overrides": { + "colors@>1.4.0": "1.4.0" + }, + "scripts": { + "test": "npm run lint && npm run prepare-tests && npm run test-node", + "coverage": "npm run prepare-tests && nyc npm run test-node && nyc report", + "coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls", + "lint": "eslint modules/*.js test/*.js", + "test-node": "qunit test/", + "test-browser": "npm i karma-phantomjs-launcher && karma start", + "bundle": "rollup -c && eslint underscore-umd.js && rollup -c rollup.config2.js", + "bundle-treeshake": "cd test-treeshake && rollup --config", + "prepare-tests": "npm run bundle && npm run bundle-treeshake", + "minify-umd": "terser underscore-umd.js -c \"evaluate=false\" --comments \"/ .*/\" -m", + "minify-esm": "terser underscore-esm.js -c \"evaluate=false\" --comments \"/ .*/\" -m", + "module-package-json": "node -e 'console.log(`{\"type\":\"module\",\"version\":\"${process.env.npm_package_version}\"}`)' > modules/package.json", + "build-umd": "npm run minify-umd -- --source-map content=underscore-umd.js.map --source-map-url \" \" -o underscore-umd-min.js", + "build-esm": "npm run module-package-json && npm run minify-esm -- --source-map content=underscore-esm.js.map --source-map-url \" \" -o underscore-esm-min.js", + "alias-bundle": "cpy --rename=underscore.js underscore-umd.js . && cpy --rename=underscore-min.js underscore-umd-min.js . && cpy --rename=underscore-min.js.map underscore-umd-min.js.map .", + "build": "npm run bundle && npm run build-umd && npm run build-esm && npm run alias-bundle", + "doc": "docco underscore-esm.js && docco modules/*.js -c docco.css -t docs/linked-esm.jst", + "weight": "npm run bundle && npm run minify-umd | gzip-size | pretty-bytes", + "prepublishOnly": "npm run build && npm run doc" + }, "files": [ "underscore-esm.js", "underscore-esm.js.map", @@ -104,52 +115,10 @@ "amd/", "cjs/" ], - "homepage": "https://underscorejs.org", "husky": { "hooks": { "pre-commit": "npm run bundle && git add underscore-umd.js underscore-umd.js.map underscore-esm.js underscore-esm.js.map underscore-node-f.cjs underscore-node-f.cjs.map underscore-node.cjs underscore-node.cjs.map underscore-node.mjs underscore-node.mjs.map", "post-commit": "git reset underscore-umd.js underscore-umd.js.map underscore-esm.js underscore-esm.js.map underscore-node-f.cjs underscore-node-f.cjs.map underscore-node.cjs underscore-node.cjs.map underscore-node.mjs underscore-node.mjs.map" } - }, - "keywords": [ - "util", - "functional", - "server", - "client", - "browser" - ], - "license": "MIT", - "main": "underscore-umd.js", - "module": "modules/index-all.js", - "name": "underscore", - "overrides": { - "colors@>1.4.0": "1.4.0" - }, - "repository": { - "type": "git", - "url": "git://github.com/jashkenas/underscore.git" - }, - "scripts": { - "alias-bundle": "cpy --rename=underscore.js underscore-umd.js . && cpy --rename=underscore-min.js underscore-umd-min.js . && cpy --rename=underscore-min.js.map underscore-umd-min.js.map .", - "build": "npm run bundle && npm run build-umd && npm run build-esm && npm run alias-bundle", - "build-esm": "npm run module-package-json && npm run minify-esm -- --source-map content=underscore-esm.js.map --source-map-url \" \" -o underscore-esm-min.js", - "build-umd": "npm run minify-umd -- --source-map content=underscore-umd.js.map --source-map-url \" \" -o underscore-umd-min.js", - "bundle": "rollup -c && eslint underscore-umd.js && rollup -c rollup.config2.js", - "bundle-treeshake": "cd test-treeshake && rollup --config", - "coverage": "npm run prepare-tests && nyc npm run test-node && nyc report", - "coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls", - "doc": "docco underscore-esm.js && docco modules/*.js -c docco.css -t docs/linked-esm.jst", - "lint": "eslint modules/*.js test/*.js", - "minify-esm": "terser underscore-esm.js -c \"evaluate=false\" --comments \"/ .*/\" -m", - "minify-umd": "terser underscore-umd.js -c \"evaluate=false\" --comments \"/ .*/\" -m", - "module-package-json": "node -e 'console.log(`{\"type\":\"module\",\"version\":\"${process.env.npm_package_version}\"}`)' > modules/package.json", - "prepare-tests": "npm run bundle && npm run bundle-treeshake", - "prepublishOnly": "npm run build && npm run doc", - "test": "npm run lint && npm run prepare-tests && npm run test-node", - "test-browser": "npm i karma-phantomjs-launcher && karma start", - "test-node": "qunit test/", - "weight": "npm run bundle && npm run minify-umd | gzip-size | pretty-bytes" - }, - "type": "commonjs", - "version": "1.13.6" + } } diff --git a/node_modules/undici-types/package.json b/node_modules/undici-types/package.json index 29f2280..be7aa4c 100644 --- a/node_modules/undici-types/package.json +++ b/node_modules/undici-types/package.json @@ -1,73 +1,55 @@ { - "_from": "undici-types@~5.26.4", - "_id": "undici-types@5.26.5", - "_inBundle": false, - "_integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "_location": "/undici-types", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "undici-types@~5.26.4", - "name": "undici-types", - "escapedName": "undici-types", - "rawSpec": "~5.26.4", - "saveSpec": null, - "fetchSpec": "~5.26.4" - }, - "_requiredBy": [ - "/@types/node" - ], - "_resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "_shasum": "bcd539893d00b56e964fd2657a4866b221a65617", - "_spec": "undici-types@~5.26.4", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/@types/node", + "name": "undici-types", + "version": "5.26.5", + "description": "A stand-alone types package for Undici", + "homepage": "https://undici.nodejs.org", "bugs": { "url": "https://github.com/nodejs/undici/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Daniele Belardi", - "url": "https://github.com/dnlup" - }, - { - "name": "Ethan Arrowood", - "url": "https://github.com/ethan-arrowood" - }, - { - "name": "Matteo Collina", - "url": "https://github.com/mcollina" - }, - { - "name": "Matthew Aitken", - "url": "https://github.com/KhafraDev" - }, - { - "name": "Robert Nagy", - "url": "https://github.com/ronag" - }, - { - "name": "Szymon Marczak", - "url": "https://github.com/szmarczak" - }, - { - "name": "Tomas Della Vedova", - "url": "https://github.com/delvedor" - } - ], - "deprecated": false, - "description": "A stand-alone types package for Undici", - "files": [ - "*.d.ts" - ], - "homepage": "https://undici.nodejs.org", - "license": "MIT", - "name": "undici-types", "repository": { "type": "git", "url": "git+https://github.com/nodejs/undici.git" }, + "license": "MIT", "types": "index.d.ts", - "version": "5.26.5" -} + "files": [ + "*.d.ts" + ], + "contributors": [ + { + "name": "Daniele Belardi", + "url": "https://github.com/dnlup", + "author": true + }, + { + "name": "Ethan Arrowood", + "url": "https://github.com/ethan-arrowood", + "author": true + }, + { + "name": "Matteo Collina", + "url": "https://github.com/mcollina", + "author": true + }, + { + "name": "Matthew Aitken", + "url": "https://github.com/KhafraDev", + "author": true + }, + { + "name": "Robert Nagy", + "url": "https://github.com/ronag", + "author": true + }, + { + "name": "Szymon Marczak", + "url": "https://github.com/szmarczak", + "author": true + }, + { + "name": "Tomas Della Vedova", + "url": "https://github.com/delvedor", + "author": true + } + ] +} \ No newline at end of file diff --git a/node_modules/unpipe/package.json b/node_modules/unpipe/package.json index 93d83a0..a2b7358 100644 --- a/node_modules/unpipe/package.json +++ b/node_modules/unpipe/package.json @@ -1,66 +1,27 @@ { - "_from": "unpipe@1.0.0", - "_id": "unpipe@1.0.0", - "_inBundle": false, - "_integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "_location": "/unpipe", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "unpipe@1.0.0", - "name": "unpipe", - "escapedName": "unpipe", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/body-parser", - "/express/body-parser", - "/express/raw-body", - "/finalhandler", - "/raw-body" - ], - "_resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "_shasum": "b2bf4ee8514aae6165b4817829d21b2ef49904ec", - "_spec": "unpipe@1.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/body-parser", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/stream-utils/unpipe/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "unpipe", "description": "Unpipe a stream from all destinations", + "version": "1.0.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "stream-utils/unpipe", "devDependencies": { "istanbul": "0.3.15", "mocha": "2.2.5", "readable-stream": "1.1.13" }, - "engines": { - "node": ">= 0.8" - }, "files": [ "HISTORY.md", "LICENSE", "README.md", "index.js" ], - "homepage": "https://github.com/stream-utils/unpipe#readme", - "license": "MIT", - "name": "unpipe", - "repository": { - "type": "git", - "url": "git+https://github.com/stream-utils/unpipe.git" + "engines": { + "node": ">= 0.8" }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" - }, - "version": "1.0.0" + } } diff --git a/node_modules/util-deprecate/package.json b/node_modules/util-deprecate/package.json index 417e929..2e79f89 100644 --- a/node_modules/util-deprecate/package.json +++ b/node_modules/util-deprecate/package.json @@ -1,40 +1,16 @@ { - "_from": "util-deprecate@~1.0.1", - "_id": "util-deprecate@1.0.2", - "_inBundle": false, - "_integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "_location": "/util-deprecate", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "util-deprecate@~1.0.1", - "name": "util-deprecate", - "escapedName": "util-deprecate", - "rawSpec": "~1.0.1", - "saveSpec": null, - "fetchSpec": "~1.0.1" - }, - "_requiredBy": [ - "/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "_shasum": "450d4dc9fa70de732762fbd2d4a28981419a0ccf", - "_spec": "util-deprecate@~1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/readable-stream", - "author": { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io/" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/TooTallNate/util-deprecate/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "util-deprecate", + "version": "1.0.2", "description": "The Node.js `util.deprecate()` function with browser support", - "homepage": "https://github.com/TooTallNate/util-deprecate", + "main": "node.js", + "browser": "browser.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/util-deprecate.git" + }, "keywords": [ "util", "deprecate", @@ -42,15 +18,10 @@ "browser", "node" ], + "author": "Nathan Rajlich (http://n8.io/)", "license": "MIT", - "main": "node.js", - "name": "util-deprecate", - "repository": { - "type": "git", - "url": "git://github.com/TooTallNate/util-deprecate.git" + "bugs": { + "url": "https://github.com/TooTallNate/util-deprecate/issues" }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "version": "1.0.2" + "homepage": "https://github.com/TooTallNate/util-deprecate" } diff --git a/node_modules/util/node_modules/inherits/package.json b/node_modules/util/node_modules/inherits/package.json index 16f8f57..7cf62b9 100644 --- a/node_modules/util/node_modules/inherits/package.json +++ b/node_modules/util/node_modules/inherits/package.json @@ -1,42 +1,7 @@ { - "_from": "inherits@2.0.3", - "_id": "inherits@2.0.3", - "_inBundle": false, - "_integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "_location": "/util/inherits", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "inherits@2.0.3", - "name": "inherits", - "escapedName": "inherits", - "rawSpec": "2.0.3", - "saveSpec": null, - "fetchSpec": "2.0.3" - }, - "_requiredBy": [ - "/util" - ], - "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "_shasum": "633c2c83e3da42a502f52466022480f4208261de", - "_spec": "inherits@2.0.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/util", - "browser": "./inherits_browser.js", - "bugs": { - "url": "https://github.com/isaacs/inherits/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "inherits", "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "devDependencies": { - "tap": "^7.1.0" - }, - "files": [ - "inherits.js", - "inherits_browser.js" - ], - "homepage": "https://github.com/isaacs/inherits#readme", + "version": "2.0.3", "keywords": [ "inheritance", "class", @@ -47,15 +12,18 @@ "browser", "browserify" ], - "license": "ISC", "main": "./inherits.js", - "name": "inherits", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/inherits.git" - }, + "browser": "./inherits_browser.js", + "repository": "git://github.com/isaacs/inherits", + "license": "ISC", "scripts": { "test": "node test" }, - "version": "2.0.3" + "devDependencies": { + "tap": "^7.1.0" + }, + "files": [ + "inherits.js", + "inherits_browser.js" + ] } diff --git a/node_modules/util/package.json b/node_modules/util/package.json index 793de6a..13d19a0 100644 --- a/node_modules/util/package.json +++ b/node_modules/util/package.json @@ -1,63 +1,35 @@ { - "_from": "util@^0.10.3", - "_id": "util@0.10.4", - "_inBundle": false, - "_integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "_location": "/util", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "util@^0.10.3", - "name": "util", - "escapedName": "util", - "rawSpec": "^0.10.3", - "saveSpec": null, - "fetchSpec": "^0.10.3" - }, - "_requiredBy": [ - "/path" - ], - "_resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "_shasum": "3aa0125bfe668a4672de58857d3ace27ecb76901", - "_spec": "util@^0.10.3", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/path", "author": { "name": "Joyent", "url": "http://www.joyent.com" }, - "browser": { - "./support/isBuffer.js": "./support/isBufferBrowser.js" - }, - "bugs": { - "url": "https://github.com/defunctzombie/node-util/issues" - }, - "bundleDependencies": false, - "dependencies": { - "inherits": "2.0.3" - }, - "deprecated": false, + "name": "util", "description": "Node.JS util module", - "devDependencies": { - "zuul": "~1.0.9" + "keywords": [ + "util" + ], + "version": "0.10.4", + "homepage": "https://github.com/defunctzombie/node-util", + "repository": { + "type": "git", + "url": "git://github.com/defunctzombie/node-util" }, + "main": "./util.js", "files": [ "util.js", "support" ], - "homepage": "https://github.com/defunctzombie/node-util", - "keywords": [ - "util" - ], - "license": "MIT", - "main": "./util.js", - "name": "util", - "repository": { - "type": "git", - "url": "git://github.com/defunctzombie/node-util.git" - }, "scripts": { "test": "node test/node/*.js && zuul test/browser/*.js" }, - "version": "0.10.4" + "dependencies": { + "inherits": "2.0.3" + }, + "license": "MIT", + "devDependencies": { + "zuul": "~1.0.9" + }, + "browser": { + "./support/isBuffer.js": "./support/isBufferBrowser.js" + } } diff --git a/node_modules/utils-merge/package.json b/node_modules/utils-merge/package.json index a953fba..e36b078 100644 --- a/node_modules/utils-merge/package.json +++ b/node_modules/utils-merge/package.json @@ -1,51 +1,22 @@ { - "_from": "utils-merge@1.0.1", - "_id": "utils-merge@1.0.1", - "_inBundle": false, - "_integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "_location": "/utils-merge", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "utils-merge@1.0.1", - "name": "utils-merge", - "escapedName": "utils-merge", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/express" + "name": "utils-merge", + "version": "1.0.1", + "description": "merge() utility function", + "keywords": [ + "util" ], - "_resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "_shasum": "9f95710f50a267947b2ccc124741c1028427e713", - "_spec": "utils-merge@1.0.1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/express", "author": { "name": "Jared Hanson", "email": "jaredhanson@gmail.com", "url": "http://www.jaredhanson.net/" }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/utils-merge.git" + }, "bugs": { "url": "http://github.com/jaredhanson/utils-merge/issues" }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "merge() utility function", - "devDependencies": { - "chai": "1.x.x", - "make-node": "0.3.x", - "mocha": "1.x.x" - }, - "engines": { - "node": ">= 0.4.0" - }, - "homepage": "https://github.com/jaredhanson/utils-merge#readme", - "keywords": [ - "util" - ], "license": "MIT", "licenses": [ { @@ -54,13 +25,16 @@ } ], "main": "./index", - "name": "utils-merge", - "repository": { - "type": "git", - "url": "git://github.com/jaredhanson/utils-merge.git" + "dependencies": {}, + "devDependencies": { + "make-node": "0.3.x", + "mocha": "1.x.x", + "chai": "1.x.x" + }, + "engines": { + "node": ">= 0.4.0" }, "scripts": { - "test": "mocha --reporter spec --require test/bootstrap/node test/*.test.js" - }, - "version": "1.0.1" + "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js" + } } diff --git a/node_modules/vary/package.json b/node_modules/vary/package.json index 19ad9ff..028f72a 100644 --- a/node_modules/vary/package.json +++ b/node_modules/vary/package.json @@ -1,38 +1,15 @@ { - "_from": "vary@^1", - "_id": "vary@1.1.2", - "_inBundle": false, - "_integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "_location": "/vary", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "vary@^1", - "name": "vary", - "escapedName": "vary", - "rawSpec": "^1", - "saveSpec": null, - "fetchSpec": "^1" - }, - "_requiredBy": [ - "/cors", - "/express" - ], - "_resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "_shasum": "2299f02c6ded30d4a5961b0b9f74524a18f634fc", - "_spec": "vary@^1", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/cors", - "author": { - "name": "Douglas Christopher Wilson", - "email": "doug@somethingdoug.com" - }, - "bugs": { - "url": "https://github.com/jshttp/vary/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "vary", "description": "Manipulate the HTTP Vary header", + "version": "1.1.2", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "http", + "res", + "vary" + ], + "repository": "jshttp/vary", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", @@ -47,26 +24,14 @@ "mocha": "2.5.3", "supertest": "1.1.0" }, - "engines": { - "node": ">= 0.8" - }, "files": [ "HISTORY.md", "LICENSE", "README.md", "index.js" ], - "homepage": "https://github.com/jshttp/vary#readme", - "keywords": [ - "http", - "res", - "vary" - ], - "license": "MIT", - "name": "vary", - "repository": { - "type": "git", - "url": "git+https://github.com/jshttp/vary.git" + "engines": { + "node": ">= 0.8" }, "scripts": { "bench": "node benchmark/index.js", @@ -74,6 +39,5 @@ "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" - }, - "version": "1.1.2" + } } diff --git a/node_modules/webidl-conversions/package.json b/node_modules/webidl-conversions/package.json index 2e9edea..20747bb 100644 --- a/node_modules/webidl-conversions/package.json +++ b/node_modules/webidl-conversions/package.json @@ -1,41 +1,28 @@ { - "_from": "webidl-conversions@^7.0.0", - "_id": "webidl-conversions@7.0.0", - "_inBundle": false, - "_integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "_location": "/webidl-conversions", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "webidl-conversions@^7.0.0", - "name": "webidl-conversions", - "escapedName": "webidl-conversions", - "rawSpec": "^7.0.0", - "saveSpec": null, - "fetchSpec": "^7.0.0" + "name": "webidl-conversions", + "version": "7.0.0", + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "main": "lib/index.js", + "scripts": { + "lint": "eslint .", + "test": "mocha test/*.js", + "test-no-sab": "mocha --parallel --jobs 2 --require test/helpers/delete-sab.js test/*.js", + "coverage": "nyc mocha test/*.js" }, - "_requiredBy": [ - "/whatwg-url" - ], - "_resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", "_scripts_comments": { "test-no-sab": "Node.js internals are broken by deleting SharedArrayBuffer if you run tests on the main thread. Using Mocha's parallel mode avoids this." }, - "_shasum": "256b4e1882be7debbf01d05f0aa2039778ea080a", - "_spec": "webidl-conversions@^7.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/whatwg-url", - "author": { - "name": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/" - }, - "bugs": { - "url": "https://github.com/jsdom/webidl-conversions/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "repository": "jsdom/webidl-conversions", + "keywords": [ + "webidl", + "web", + "types" + ], + "files": [ + "lib/" + ], + "author": "Domenic Denicola (https://domenic.me/)", + "license": "BSD-2-Clause", "devDependencies": { "@domenic/eslint-config": "^1.3.0", "eslint": "^7.32.0", @@ -44,28 +31,5 @@ }, "engines": { "node": ">=12" - }, - "files": [ - "lib/" - ], - "homepage": "https://github.com/jsdom/webidl-conversions#readme", - "keywords": [ - "webidl", - "web", - "types" - ], - "license": "BSD-2-Clause", - "main": "lib/index.js", - "name": "webidl-conversions", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/webidl-conversions.git" - }, - "scripts": { - "coverage": "nyc mocha test/*.js", - "lint": "eslint .", - "test": "mocha test/*.js", - "test-no-sab": "mocha --parallel --jobs 2 --require test/helpers/delete-sab.js test/*.js" - }, - "version": "7.0.0" + } } diff --git a/node_modules/whatwg-url/package.json b/node_modules/whatwg-url/package.json index f64e6af..9cb209f 100644 --- a/node_modules/whatwg-url/package.json +++ b/node_modules/whatwg-url/package.json @@ -1,41 +1,20 @@ { - "_from": "whatwg-url@^11.0.0", - "_id": "whatwg-url@11.0.0", - "_inBundle": false, - "_integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "_location": "/whatwg-url", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "whatwg-url@^11.0.0", - "name": "whatwg-url", - "escapedName": "whatwg-url", - "rawSpec": "^11.0.0", - "saveSpec": null, - "fetchSpec": "^11.0.0" - }, - "_requiredBy": [ - "/mongodb-connection-string-url" + "name": "whatwg-url", + "version": "11.0.0", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "main": "index.js", + "files": [ + "index.js", + "webidl2js-wrapper.js", + "lib/*.js" ], - "_resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "_shasum": "0a849eebb5faf2119b901bb76fd795c2848d4018", - "_spec": "whatwg-url@^11.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/mongodb-connection-string-url", - "author": { - "name": "Sebastian Mayr", - "email": "github@smayr.name" - }, - "bugs": { - "url": "https://github.com/jsdom/whatwg-url/issues" - }, - "bundleDependencies": false, + "author": "Sebastian Mayr ", + "license": "MIT", + "repository": "jsdom/whatwg-url", "dependencies": { "tr46": "^3.0.0", "webidl-conversions": "^7.0.0" }, - "deprecated": false, - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", "devDependencies": { "@domenic/eslint-config": "^1.4.0", "benchmark": "^2.1.4", @@ -49,12 +28,14 @@ "engines": { "node": ">=12" }, - "files": [ - "index.js", - "webidl2js-wrapper.js", - "lib/*.js" - ], - "homepage": "https://github.com/jsdom/whatwg-url#readme", + "scripts": { + "coverage": "jest --coverage", + "lint": "eslint .", + "prepare": "node scripts/transform.js", + "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js", + "build-live-viewer": "browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js", + "test": "jest" + }, "jest": { "collectCoverageFrom": [ "lib/**/*.js", @@ -73,21 +54,5 @@ "^/test/testharness.js$", "^/test/web-platform-tests/" ] - }, - "license": "MIT", - "main": "index.js", - "name": "whatwg-url", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/whatwg-url.git" - }, - "scripts": { - "build-live-viewer": "browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js", - "coverage": "jest --coverage", - "lint": "eslint .", - "prepare": "node scripts/transform.js", - "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js", - "test": "jest" - }, - "version": "11.0.0" + } } diff --git a/node_modules/wordnet-db/package.json b/node_modules/wordnet-db/package.json index 7e35f80..f17f465 100644 --- a/node_modules/wordnet-db/package.json +++ b/node_modules/wordnet-db/package.json @@ -1,60 +1,29 @@ -{ - "_from": "wordnet-db@^3.1.11", - "_id": "wordnet-db@3.1.14", - "_inBundle": false, - "_integrity": "sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag==", - "_location": "/wordnet-db", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "wordnet-db@^3.1.11", - "name": "wordnet-db", - "escapedName": "wordnet-db", - "rawSpec": "^3.1.11", - "saveSpec": null, - "fetchSpec": "^3.1.11" - }, - "_requiredBy": [ - "/natural" - ], - "_resolved": "https://registry.npmjs.org/wordnet-db/-/wordnet-db-3.1.14.tgz", - "_shasum": "7ba1ec2cb5730393f0856efcc738a60085426199", - "_spec": "wordnet-db@^3.1.11", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/natural", - "author": { - "name": "Moos", - "email": "mooster@42at.com" - }, - "bugs": { - "url": "https://github.com/moos/wordnet-db/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "WordNet 3.1 Database files", - "devDependencies": { - "detect-newline": "^3.1.0" - }, - "engines": { - "node": ">=0.6.0" - }, - "homepage": "http://wordnet.princeton.edu/", - "keywords": [ - "WordNet", - "wordpos", - "natural", - "pos" - ], - "license": "MIT", - "name": "wordnet-db", - "repository": { - "type": "git", - "url": "git://github.com/moos/wordnet-db.git" - }, - "scripts": { - "prepublish": "npm test", - "test": "node test.js" - }, - "version": "3.1.14" -} +{ + "name": "wordnet-db", + "version": "3.1.14", + "description": "WordNet 3.1 Database files", + "author": "Moos ", + "keywords": [ + "WordNet", + "wordpos", + "natural", + "pos" + ], + "homepage": "http://wordnet.princeton.edu/", + "license": "MIT", + "repository": { + "type": "git", + "url": "git://github.com/moos/wordnet-db.git" + }, + "dependencies": {}, + "devDependencies": { + "detect-newline": "^3.1.0" + }, + "engines": { + "node": ">=0.6.0" + }, + "scripts": { + "test": "node test.js", + "prepublish": "npm test" + } +} diff --git a/node_modules/xtend/package.json b/node_modules/xtend/package.json index 715c47d..f7a39d1 100644 --- a/node_modules/xtend/package.json +++ b/node_modules/xtend/package.json @@ -1,54 +1,7 @@ { - "_from": "xtend@^4.0.0", - "_id": "xtend@4.0.2", - "_inBundle": false, - "_integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "_location": "/xtend", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "xtend@^4.0.0", - "name": "xtend", - "escapedName": "xtend", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/multer" - ], - "_resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "_shasum": "bb72779f5fa465186b1f438f674fa347fdb5db54", - "_spec": "xtend@^4.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/multer", - "author": { - "name": "Raynos", - "email": "raynos2@gmail.com" - }, - "bugs": { - "url": "https://github.com/Raynos/xtend/issues", - "email": "raynos2@gmail.com" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jake Verbaten" - }, - { - "name": "Matt Esch" - } - ], - "dependencies": {}, - "deprecated": false, + "name": "xtend", + "version": "4.0.2", "description": "extend like a boss", - "devDependencies": { - "tape": "~1.1.0" - }, - "engines": { - "node": ">=0.4" - }, - "homepage": "https://github.com/Raynos/xtend", "keywords": [ "extend", "merge", @@ -57,16 +10,30 @@ "object", "array" ], - "license": "MIT", + "author": "Raynos ", + "repository": "git://github.com/Raynos/xtend.git", "main": "immutable", - "name": "xtend", - "repository": { - "type": "git", - "url": "git://github.com/Raynos/xtend.git" - }, "scripts": { "test": "node test" }, + "dependencies": {}, + "devDependencies": { + "tape": "~1.1.0" + }, + "homepage": "https://github.com/Raynos/xtend", + "contributors": [ + { + "name": "Jake Verbaten" + }, + { + "name": "Matt Esch" + } + ], + "bugs": { + "url": "https://github.com/Raynos/xtend/issues", + "email": "raynos2@gmail.com" + }, + "license": "MIT", "testling": { "files": "test.js", "browsers": [ @@ -82,5 +49,7 @@ "iphone/6.0..latest" ] }, - "version": "4.0.2" + "engines": { + "node": ">=0.4" + } } diff --git a/node_modules/yallist/package.json b/node_modules/yallist/package.json index f5e782b..8a08386 100644 --- a/node_modules/yallist/package.json +++ b/node_modules/yallist/package.json @@ -1,42 +1,8 @@ { - "_from": "yallist@^4.0.0", - "_id": "yallist@4.0.0", - "_inBundle": false, - "_integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "_location": "/yallist", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "yallist@^4.0.0", - "name": "yallist", - "escapedName": "yallist", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/lru-cache" - ], - "_resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "_shasum": "9bb92790d9c0effec63be73519e11a35019a3a72", - "_spec": "yallist@^4.0.0", - "_where": "/home/appzia-android/Downloads/7fife_api (1)/node_modules/lru-cache", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/yallist/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "yallist", + "version": "4.0.0", "description": "Yet Another Linked List", - "devDependencies": { - "tap": "^12.1.0" - }, + "main": "yallist.js", "directories": { "test": "test" }, @@ -44,19 +10,20 @@ "yallist.js", "iterator.js" ], - "homepage": "https://github.com/isaacs/yallist#readme", - "license": "ISC", - "main": "yallist.js", - "name": "yallist", + "dependencies": {}, + "devDependencies": { + "tap": "^12.1.0" + }, + "scripts": { + "test": "tap test/*.js --100", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, "repository": { "type": "git", "url": "git+https://github.com/isaacs/yallist.git" }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap test/*.js --100" - }, - "version": "4.0.0" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC" } diff --git a/package-lock.json b/package-lock.json index ebcf04f..607361e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,117 +1,159 @@ { "name": "7fife", "version": "1.0.0", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@types/node": { + "packages": { + "": { + "name": "7fife", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "axios": "^1.6.7", + "bcryptjs": "^2.4.3", + "body-parser": "^1.20.2", + "busboy": "^1.6.0", + "cors": "^2.8.5", + "dotenv": "^16.3.1", + "express": "^4.18.2", + "jsonwebtoken": "^9.0.0", + "mongodb": "^5.6.0", + "mongoose": "^7.3.0", + "multer": "^1.4.5-lts.1", + "natural": "^6.10.0", + "nodemailer": "^6.9.3", + "nodemon": "^3.0.3", + "path": "^0.12.7" + } + }, + "node_modules/@types/node": { "version": "20.11.24", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.24.tgz", "integrity": "sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==", - "requires": { + "dependencies": { "undici-types": "~5.26.4" } }, - "@types/webidl-conversions": { + "node_modules/@types/webidl-conversions": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==" }, - "@types/whatwg-url": { + "node_modules/@types/whatwg-url": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", - "requires": { + "dependencies": { "@types/node": "*", "@types/webidl-conversions": "*" } }, - "abbrev": { + "node_modules/abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" }, - "accepts": { + "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "requires": { + "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, - "afinn-165": { + "node_modules/afinn-165": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/afinn-165/-/afinn-165-1.0.4.tgz", - "integrity": "sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA==" + "integrity": "sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "afinn-165-financialmarketnews": { + "node_modules/afinn-165-financialmarketnews": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/afinn-165-financialmarketnews/-/afinn-165-financialmarketnews-3.0.0.tgz", - "integrity": "sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw==" + "integrity": "sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "anymatch": { + "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "requires": { + "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "apparatus": { + "node_modules/apparatus": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.10.tgz", "integrity": "sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg==", - "requires": { + "dependencies": { "sylvester": ">= 0.0.8" + }, + "engines": { + "node": ">=0.2.6" } }, - "append-field": { + "node_modules/append-field": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "array-flatten": { + "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, - "asynckit": { + "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, - "axios": { + "node_modules/axios": { "version": "1.6.7", "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", - "requires": { + "dependencies": { "follow-redirects": "^1.15.4", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, - "balanced-match": { + "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, - "bcryptjs": { + "node_modules/bcryptjs": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" }, - "binary-extensions": { + "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } }, - "body-parser": { + "node_modules/body-parser": { "version": "1.20.2", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "requires": { + "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", "debug": "2.6.9", @@ -124,225 +166,307 @@ "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "brace-expansion": { + "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { + "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "braces": { + "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { + "dependencies": { "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" } }, - "bson": { + "node_modules/bson": { "version": "5.5.1", "resolved": "https://registry.npmjs.org/bson/-/bson-5.5.1.tgz", - "integrity": "sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==" + "integrity": "sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==", + "engines": { + "node": ">=14.20.1" + } }, - "buffer-equal-constant-time": { + "node_modules/buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" }, - "buffer-from": { + "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, - "busboy": { + "node_modules/busboy": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "requires": { + "dependencies": { "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" } }, - "bytes": { + "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } }, - "call-bind": { + "node_modules/call-bind": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "requires": { + "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "chokidar": { + "node_modules/chokidar": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "requires": { + "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", - "fsevents": "~2.3.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "combined-stream": { + "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { + "dependencies": { "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "concat-map": { + "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, - "concat-stream": { + "node_modules/concat-stream": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "requires": { + "engines": [ + "node >= 0.8" + ], + "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" } }, - "content-disposition": { + "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "requires": { + "dependencies": { "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" } }, - "content-type": { + "node_modules/content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } }, - "cookie": { + "node_modules/cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } }, - "cookie-signature": { + "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, - "core-util-is": { + "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, - "cors": { + "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { + "dependencies": { "object-assign": "^4", "vary": "^1" + }, + "engines": { + "node": ">= 0.10" } }, - "debug": { + "node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { + "dependencies": { "ms": "2.0.0" } }, - "define-data-property": { + "node_modules/define-data-property": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "requires": { + "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "delayed-stream": { + "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } }, - "depd": { + "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } }, - "destroy": { + "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } }, - "dotenv": { + "node_modules/dotenv": { "version": "16.3.1", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } }, - "ecdsa-sig-formatter": { + "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "requires": { + "dependencies": { "safe-buffer": "^5.0.1" } }, - "ee-first": { + "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, - "encodeurl": { + "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } }, - "es-define-property": { + "node_modules/es-define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "requires": { + "dependencies": { "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" } }, - "es-errors": { + "node_modules/es-errors": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } }, - "escape-html": { + "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, - "etag": { + "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } }, - "express": { + "node_modules/express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "requires": { + "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", @@ -375,52 +499,63 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "dependencies": { - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - } - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - } + "engines": { + "node": ">= 0.10.0" } }, - "fill-range": { + "node_modules/express/node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/express/node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { + "dependencies": { "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "finalhandler": { + "node_modules/finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "requires": { + "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -428,323 +563,472 @@ "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "follow-redirects": { + "node_modules/follow-redirects": { "version": "1.15.5", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } }, - "form-data": { + "node_modules/form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "requires": { + "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, - "forwarded": { + "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } }, - "fresh": { + "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } }, - "fsevents": { + "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "optional": true + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } }, - "function-bind": { + "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "get-intrinsic": { + "node_modules/get-intrinsic": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "requires": { + "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "glob-parent": { + "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { + "dependencies": { "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "gopd": { + "node_modules/gopd": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "requires": { + "dependencies": { "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "has-flag": { + "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } }, - "has-property-descriptors": { + "node_modules/has-property-descriptors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "requires": { + "dependencies": { "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "has-proto": { + "node_modules/has-proto": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "has-symbols": { + "node_modules/has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "hasown": { + "node_modules/hasown": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", - "requires": { + "dependencies": { "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" } }, - "http-errors": { + "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { + "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" } }, - "iconv-lite": { + "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { + "dependencies": { "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" } }, - "ignore-by-default": { + "node_modules/ignore-by-default": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" }, - "inherits": { + "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "ip-address": { + "node_modules/ip-address": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", - "requires": { + "dependencies": { "jsbn": "1.1.0", "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" } }, - "ipaddr.js": { + "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } }, - "is-binary-path": { + "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { + "dependencies": { "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "is-extglob": { + "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } }, - "is-glob": { + "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "requires": { + "dependencies": { "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-number": { + "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } }, - "isarray": { + "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, - "jsbn": { + "node_modules/jsbn": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" }, - "jsonwebtoken": { + "node_modules/jsonwebtoken": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", - "requires": { + "dependencies": { "jws": "^3.2.2", "lodash": "^4.17.21", "ms": "^2.1.1", "semver": "^7.3.8" }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } + "engines": { + "node": ">=12", + "npm": ">=6" } }, - "jwa": { + "node_modules/jsonwebtoken/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/jwa": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "requires": { + "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, - "jws": { + "node_modules/jws": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "requires": { + "dependencies": { "jwa": "^1.4.1", "safe-buffer": "^5.0.1" } }, - "kareem": { + "node_modules/kareem": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz", - "integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==" + "integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==", + "engines": { + "node": ">=12.0.0" + } }, - "lodash": { + "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "lru-cache": { + "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "requires": { + "dependencies": { "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "media-typer": { + "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } }, - "memory-pager": { + "node_modules/memory-pager": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", "optional": true }, - "merge-descriptors": { + "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, - "methods": { + "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } }, - "mime": { + "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } }, - "mime-db": { + "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } }, - "mime-types": { + "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { + "dependencies": { "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" } }, - "minimatch": { + "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { + "dependencies": { "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minimist": { + "node_modules/minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "mkdirp": { + "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "requires": { + "dependencies": { "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, - "mongodb": { + "node_modules/mongodb": { "version": "5.6.0", "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.6.0.tgz", "integrity": "sha512-z8qVs9NfobHJm6uzK56XBZF8XwM9H294iRnB7wNjF0SnY93si5HPziIJn+qqvUR5QOff/4L0gCD6SShdR/GtVQ==", - "requires": { + "dependencies": { "bson": "^5.3.0", "mongodb-connection-string-url": "^2.6.0", - "saslprep": "^1.0.3", "socks": "^2.7.1" + }, + "engines": { + "node": ">=14.20.1" + }, + "optionalDependencies": { + "saslprep": "^1.0.3" + }, + "peerDependencies": { + "@aws-sdk/credential-providers": "^3.201.0", + "mongodb-client-encryption": ">=2.3.0 <3", + "snappy": "^7.2.2" + }, + "peerDependenciesMeta": { + "@aws-sdk/credential-providers": { + "optional": true + }, + "mongodb-client-encryption": { + "optional": true + }, + "snappy": { + "optional": true + } } }, - "mongodb-connection-string-url": { + "node_modules/mongodb-connection-string-url": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz", "integrity": "sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==", - "requires": { + "dependencies": { "@types/whatwg-url": "^8.2.1", "whatwg-url": "^11.0.0" } }, - "mongoose": { + "node_modules/mongoose": { "version": "7.3.0", "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.3.0.tgz", "integrity": "sha512-gvkV5qxmBkGohlk7VTeePMPM2OkQPeqVYZHvjoM4goOIK6G1eSfJMZwXV21asivXxlaz6OuP29TfGAKrKooDAg==", - "requires": { + "dependencies": { "bson": "^5.3.0", "kareem": "2.5.1", "mongodb": "5.6.0", @@ -753,52 +1037,69 @@ "ms": "2.1.3", "sift": "16.0.1" }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } + "engines": { + "node": ">=14.20.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mongoose" } }, - "mpath": { + "node_modules/mongoose/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/mpath": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", - "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==" + "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", + "engines": { + "node": ">=4.0.0" + } }, - "mquery": { + "node_modules/mquery": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", - "requires": { + "dependencies": { "debug": "4.x" }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/mquery/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "ms": { + "node_modules/mquery/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "multer": { + "node_modules/multer": { "version": "1.4.5-lts.1", "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", - "requires": { + "dependencies": { "append-field": "^1.0.0", "busboy": "^1.0.0", "concat-stream": "^1.5.2", @@ -806,13 +1107,16 @@ "object-assign": "^4.1.1", "type-is": "^1.6.4", "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 6.0.0" } }, - "natural": { + "node_modules/natural": { "version": "6.10.0", "resolved": "https://registry.npmjs.org/natural/-/natural-6.10.0.tgz", "integrity": "sha512-jqNcUzuz/BMfa0/FX9GMPSmTCCoeKMif4PIIKTueJcJPLBcLYokqfcv/r47e6dLf+gAgutGciepTYA5pJ+Noow==", - "requires": { + "dependencies": { "afinn-165": "^1.0.2", "afinn-165-financialmarketnews": "^3.0.0", "apparatus": "^0.0.10", @@ -821,23 +1125,32 @@ "sylvester": "^0.0.12", "underscore": "^1.9.1", "wordnet-db": "^3.1.11" + }, + "engines": { + "node": ">=0.4.10" } }, - "negotiator": { + "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } }, - "nodemailer": { + "node_modules/nodemailer": { "version": "6.9.3", "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.3.tgz", - "integrity": "sha512-fy9v3NgTzBngrMFkDsKEj0r02U7jm6XfC3b52eoNV+GCrGj+s8pt5OqhiJdWKuw51zCTdiNR/IUD1z33LIIGpg==" + "integrity": "sha512-fy9v3NgTzBngrMFkDsKEj0r02U7jm6XfC3b52eoNV+GCrGj+s8pt5OqhiJdWKuw51zCTdiNR/IUD1z33LIIGpg==", + "engines": { + "node": ">=6.0.0" + } }, - "nodemon": { + "node_modules/nodemon": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.0.3.tgz", "integrity": "sha512-7jH/NXbFPxVaMwmBCC2B9F/V6X1VkEdNgx3iu9jji8WxWcvhMWkmhNWhI5077zknOnZnBzba9hZP6bCPJLSReQ==", - "requires": { + "dependencies": { "chokidar": "^3.5.2", "debug": "^4", "ignore-by-default": "^1.0.1", @@ -849,140 +1162,204 @@ "touch": "^3.1.0", "undefsafe": "^2.0.5" }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nodemon/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "nopt": { + "node_modules/nodemon/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/nopt": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "requires": { + "dependencies": { "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "*" } }, - "normalize-path": { + "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } }, - "object-assign": { + "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } }, - "object-inspect": { + "node_modules/object-inspect": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "on-finished": { + "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { + "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "parseurl": { + "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } }, - "path": { + "node_modules/path": { "version": "0.12.7", "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", - "requires": { + "dependencies": { "process": "^0.11.1", "util": "^0.10.3" } }, - "path-to-regexp": { + "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" }, - "picomatch": { + "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, - "process": { + "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } }, - "process-nextick-args": { + "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, - "proxy-addr": { + "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "requires": { + "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" } }, - "proxy-from-env": { + "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, - "pstree.remy": { + "node_modules/pstree.remy": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" }, - "punycode": { + "node_modules/punycode": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } }, - "qs": { + "node_modules/qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "requires": { + "dependencies": { "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "range-parser": { + "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } }, - "raw-body": { + "node_modules/raw-body": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "requires": { + "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "readable-stream": { + "node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { + "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", @@ -990,60 +1367,87 @@ "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } } }, - "readdirp": { + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "requires": { + "dependencies": { "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "safe-buffer": { + "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "safe-stable-stringify": { + "node_modules/safe-stable-stringify": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "engines": { + "node": ">=10" + } }, - "safer-buffer": { + "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, - "saslprep": { + "node_modules/saslprep": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", "optional": true, - "requires": { + "dependencies": { "sparse-bitfield": "^3.0.3" + }, + "engines": { + "node": ">=6" } }, - "semver": { + "node_modules/semver": { "version": "7.6.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "requires": { + "dependencies": { "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "send": { + "node_modules/send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "requires": { + "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -1058,256 +1462,327 @@ "range-parser": "~1.2.1", "statuses": "2.0.1" }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } + "engines": { + "node": ">= 0.8.0" } }, - "serve-static": { + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "requires": { + "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "set-function-length": { + "node_modules/set-function-length": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", - "requires": { + "dependencies": { "define-data-property": "^1.1.2", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.3", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" } }, - "setprototypeof": { + "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, - "side-channel": { + "node_modules/side-channel": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "requires": { + "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "sift": { + "node_modules/sift": { "version": "16.0.1", "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", "integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==" }, - "simple-update-notifier": { + "node_modules/simple-update-notifier": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", - "requires": { + "dependencies": { "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" } }, - "smart-buffer": { + "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } }, - "socks": { + "node_modules/socks": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz", "integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==", - "requires": { + "dependencies": { "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.0.0", + "npm": ">= 3.0.0" } }, - "sparse-bitfield": { + "node_modules/sparse-bitfield": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", "optional": true, - "requires": { + "dependencies": { "memory-pager": "^1.0.2" } }, - "sprintf-js": { + "node_modules/sprintf-js": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" }, - "statuses": { + "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } }, - "stopwords-iso": { + "node_modules/stopwords-iso": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/stopwords-iso/-/stopwords-iso-1.1.0.tgz", - "integrity": "sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg==" + "integrity": "sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg==", + "engines": { + "node": ">=0.10.0" + } }, - "streamsearch": { + "node_modules/streamsearch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } }, - "string_decoder": { + "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - }, "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "safe-buffer": "~5.1.0" } }, - "supports-color": { + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { + "dependencies": { "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "sylvester": { + "node_modules/sylvester": { "version": "0.0.12", "resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz", - "integrity": "sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==" + "integrity": "sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==", + "engines": { + "node": ">=0.2.6" + } }, - "to-regex-range": { + "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { + "dependencies": { "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "toidentifier": { + "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } }, - "touch": { + "node_modules/touch": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "requires": { + "dependencies": { "nopt": "~1.0.10" + }, + "bin": { + "nodetouch": "bin/nodetouch.js" } }, - "tr46": { + "node_modules/tr46": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "requires": { + "dependencies": { "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" } }, - "type-is": { + "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { + "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, - "typedarray": { + "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" }, - "undefsafe": { + "node_modules/undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" }, - "underscore": { + "node_modules/underscore": { "version": "1.13.6", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" }, - "undici-types": { + "node_modules/undici-types": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" }, - "unpipe": { + "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } }, - "util": { + "node_modules/util": { "version": "0.10.4", "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "requires": { - "inherits": "2.0.3" - }, "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } + "inherits": "2.0.3" } }, - "util-deprecate": { + "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, - "utils-merge": { + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } }, - "vary": { + "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } }, - "webidl-conversions": { + "node_modules/webidl-conversions": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } }, - "whatwg-url": { + "node_modules/whatwg-url": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "requires": { + "dependencies": { "tr46": "^3.0.0", "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, - "wordnet-db": { + "node_modules/wordnet-db": { "version": "3.1.14", "resolved": "https://registry.npmjs.org/wordnet-db/-/wordnet-db-3.1.14.tgz", - "integrity": "sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag==" + "integrity": "sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag==", + "engines": { + "node": ">=0.6.0" + } }, - "xtend": { + "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } }, - "yallist": { + "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" diff --git a/routes/admin.route.js b/routes/admin.route.js index 02187b8..7c35784 100644 --- a/routes/admin.route.js +++ b/routes/admin.route.js @@ -3,20 +3,35 @@ const authController = require('../controllers/auth.controller'); const adminController = require('../controllers/Admin.controller'); const adminCheck = require('../middlewares/Admin'); const authJwt = require('../middlewares/authjwt'); +const multer = require('multer'); +var fileStorageEngine = multer.diskStorage({ + destination: (req, file, cb) => { + cb(null, './uploads'); + }, + filename: (req, file, cb) => { + cb(null, "[image]-" + file.originalname); + } +}); +var upload = multer({ + storage: fileStorageEngine +}) module.exports = (app) => { app.post('/admin/register',adminController.createAdmin); app.post('/admin/login', authController.signIn); app.get('/admin/getUserList', [authJwt.verifyToken, adminCheck.isAdmin], adminController.getList); - app.put('/admin/update/:id', [authJwt.verifyToken, adminCheck.isAdmin], adminController.update) + app.put('/admin/updateProfile', [authJwt.verifyToken, adminCheck.isAdmin], adminController.update) + app.put('/admin/updateProfilePic', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin],adminController.updateProfile) + app.get('/admin/adminProfile', [authJwt.verifyToken, adminCheck.isAdmin],adminController.adminProfile) app.put('/admin/userStatus/:id', [authJwt.verifyToken, adminCheck.isAdmin], adminController.userStatus) +app.put('/changePassword',[authJwt.verifyToken, adminCheck.isAdmin],adminController.changePassword) } diff --git a/routes/album.route.js b/routes/album.route.js index abf6ea1..ab5d455 100644 --- a/routes/album.route.js +++ b/routes/album.route.js @@ -5,23 +5,23 @@ const multer = require('multer'); var fileStorageEngine = multer.diskStorage({ destination: (req, file, cb) => { - cb(null, './uploads'); + cb(null, './uploads'); }, filename: (req, file, cb) => { - cb(null, "[image]-" + file.originalname); + cb(null, "[image]-" + file.originalname); } }); var upload = multer({ storage: fileStorageEngine -}); +}) module.exports = (app) => { - app.post('/createalbum', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin], albumController.createAlbum); - // Correct the route for updating an album - app.put('/updatealbum/:id', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin], albumController.updateAlbum); - app.delete('/deletealbum/:id',[authJwt.verifyToken, adminCheck.isAdmin], albumController.deleteAlbum); - app.put('/changealbumStatus/:id', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin], albumController.changeAlbumStatus); - app.get('/getalbums',[authJwt.verifyToken, adminCheck.isAdmin], albumController.getAlbums); + app.post('/createalbum', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], albumController.createAlbum); + app.put('/updatealbum/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], albumController.updateAlbum); + app.delete('/deletealbum/:id', [authJwt.verifyToken, adminCheck.isAdmin], albumController.deleteAlbum); + app.put('/changealbumStatus/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], albumController.changeAlbumStatus); + app.get('/getalbums', [authJwt.verifyToken, adminCheck.isAdmin], albumController.getAlbums); + app.delete('/deletMany',albumController.deletMany) }; diff --git a/routes/categories.route.js b/routes/categories.route.js index ce2d2e1..99a728a 100644 --- a/routes/categories.route.js +++ b/routes/categories.route.js @@ -6,10 +6,10 @@ const multer = require('multer'); var fileStorageEngine = multer.diskStorage({ destination: (req, file, cb) => { - cb(null, './uploads'); + cb(null, './uploads'); }, filename: (req, file, cb) => { - cb(null, "[image]-" + file.originalname); + cb(null, "[image]-" + file.originalname); } }); @@ -18,9 +18,11 @@ var upload = multer({ }); module.exports = (app) => { - app.post('/createcategories', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.createCategories ); - app.put('/updatecategories/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.updateCategories); - app.delete('/deletecategories/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.deleteCategories ); - app.put('/changecategorystatus/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.changeCategoryStatus ); - app.get('/getcategories',[authJwt.verifyToken, adminCheck.isAdmin], categoriesController.getCategories); + app.post('/createcategories', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.createCategories); + app.put('/updatecategories/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.updateCategories); + app.delete('/deletecategories/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.deleteCategories); + app.put('/changecategorystatus/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.changeCategoryStatus); + app.get('/getcategories', [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.getCategories); + app.get('/getcategoriesPage', [authJwt.verifyToken, adminCheck.isAdmin], categoriesController.getcategoriesPage); + }; diff --git a/routes/subcategories.route.js b/routes/subcategories.route.js index 808b8df..657edae 100644 --- a/routes/subcategories.route.js +++ b/routes/subcategories.route.js @@ -5,10 +5,10 @@ const multer = require('multer'); var fileStorageEngine = multer.diskStorage({ destination: (req, file, cb) => { - cb(null, './uploads'); + cb(null, './uploads'); }, filename: (req, file, cb) => { - cb(null, "[image]-" + file.originalname); + cb(null, "[image]-" + file.originalname); } }); @@ -17,12 +17,12 @@ var upload = multer({ }) module.exports = (app) => { - app.post('/createsubCategories', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.createsubCategories); - app.put('/updateSubCategories/:id', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.updateSubCategories); - app.delete('/deleteSubCategories/:id', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.deleteSubCategories); - app.get('/getSubCategories',[authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.getSubCategories); - app.put('/changeSubCategoryStatus/:id', upload.single('image'),[authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.changeSubCategoryStatus); - app.get('/getCategories/:CategoriesId',[authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.getCategories); + app.post('/createsubCategories', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.createsubCategories); + app.put('/updateSubCategories/', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.updateSubCategories); + app.delete('/deleteSubCategories/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.deleteSubCategories); + app.get('/getSubCategories', [authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.getSubCategories); + app.put('/changeSubCategoryStatus/:id', upload.single('image'), [authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.changeSubCategoryStatus); + app.get('/getSubCategoriesfromCategory/:CategoriesId', [authJwt.verifyToken, adminCheck.isAdmin], SubCategoriesController.getSubCategoriesfromCategory); - app.delete('/deleteMany',SubCategoriesController.deleteMany) + app.delete('/deleteMany', SubCategoriesController.deleteMany) }; diff --git a/uploads/[image]-3.gif b/uploads/[image]-3.gif new file mode 100644 index 0000000..8fad06c Binary files /dev/null and b/uploads/[image]-3.gif differ diff --git a/uploads/[image]-signature-1703138105385-571801864.png b/uploads/[image]-signature-1703138105385-571801864.png new file mode 100644 index 0000000..70d6014 Binary files /dev/null and b/uploads/[image]-signature-1703138105385-571801864.png differ