This commit is contained in:
Florian Federspiel
2023-11-25 16:53:52 +01:00
commit 677030f712
685 changed files with 148719 additions and 0 deletions

44
test/imaps/node_modules/node-imap/package.json generated vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "node-imap",
"version": "0.9.6",
"author": "Brian White <mscdex@mscdex.net>",
"contributors": [
{
"email": "michael.bevz@gmail.com",
"name": "Michael Bevz"
}
],
"description": "A fork of the famous and outdated IMAP module for node.js that makes communicating with IMAP servers easy",
"main": "./lib/Connection",
"license": "MIT",
"dependencies": {
"utf7": "^1.0.2",
"readable-stream": "^3.6.0"
},
"scripts": {
"test": "node test/test.js"
},
"engines": {
"node": ">=0.8.0"
},
"keywords": [
"imap",
"mail",
"email",
"reader",
"client"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/mscdex/node-imap/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mikebevz/node-imap"
},
"devDependencies": {
"eslint": "^7.1.0"
}
}