forked from andris9/imap-autoconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 KB
/
package.json
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
{
"name": "@ankaboot.io/imap-autoconfig",
"description": "Detect IMAP configuration for an e-mail address",
"version": "0.1.2",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"url": "https://github.com/ankaboot-source/imap-autoconfig"
},
"scripts": {
"lint": "eslint --fix src",
"build": "tsup",
"test": "jest"
},
"keywords": [
"imap",
"auto-detect",
"auto-config"
],
"author": "Ankaboot.io",
"license": "MIT",
"dependencies": {
"axios": "^1.6.8",
"fast-xml-parser": "^4.3.6",
"imap": "^0.8.19",
"tsup": "^8.0.2"
},
"overrides": {
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/imap": "^0.8.40",
"@types/jest": "^29.5.12",
"@types/node": "^20.17.6",
"@types/node-imap": "^0.9.3",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"publishConfig": {
"access": "public"
}
}