-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@lzwme/node-exchange-mailer",
"version": "1.1.0",
"description": "使用 nodejs 发送基于 EWS(Microsoft Exchange Web Serveice) 邮件服务的邮件。",
"main": "cjs/index.js",
"typings": "cjs/index.d.ts",
"module": "esm/index.js",
"repository": "https://github.com/lzwme/node-exchange-mailer",
"license": "MIT",
"homepage": "https://lzw.me/a/nodejs-stmp-exchange-email-send.html",
"keywords": [
"ews",
"exchange",
"email",
"Nodemailer",
"send-email",
"TypeScript"
],
"author": {
"name": "lzwme",
"url": "https://lzw.me"
},
"maintainers": [
{
"name": "renxia",
"url": "https://lzw.me"
}
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"scripts": {
"prepare": "husky || true",
"dev": "npm run watch",
"watch": "npm run build:cjs -- -- -w",
"lint": "flh --eslint --tscheck --prettier",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.module.json",
"doc": "typedoc src/ --exclude **/*.spec.ts --out docs --tsconfig tsconfig.module.json",
"version": "standard-version",
"dist": "npm run build",
"release": "npm run dist && npm run version",
"clean": "flh rm -f ./cjs ./esm ./docs",
"test": "npm run lint"
},
"dependencies": {
"debug": "^4.3.6",
"httpntlm": "^1.8.13",
"node-ews": "^3.5.0"
},
"optionalDependencies": {
"nodemailer": "^6.9.14"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@lzwme/fed-lint-helper": "^2.6.2",
"@types/debug": "^4.1.12",
"@types/node": "^22.0.0",
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
},
"files": [
"cjs",
"esm",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true
}
}