forked from mscdex/node-imap
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@lovely-inbox/imap",
"version": "0.9.0",
"author": "Alexis Hushbeck",
"contributors": [
"Brian White <mscdex@mscdex.net>"
],
"description": "A TypeScript port and modernization of the node IMAP module that makes communicating with IMAP servers easy",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"utf7": "git+https://github.com/LoveAndCoding/utf7.git"
},
"scripts": {
"build": "tsc -d",
"test": "jest",
"test:old": "node test/test.js"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"imap",
"mail",
"email",
"reader",
"client"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/LoveAndCoding/imap/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LoveAndCoding/imap.git"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"bugs": {
"url": "https://github.com/LoveAndCoding/imap/issues"
},
"homepage": "https://github.com/LoveAndCoding/imap#readme",
"directories": {
"lib": "src",
"test": "test"
},
"license": "MIT"
}