forked from nodemailer/smtp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "smtp-server",
"version": "3.17.1",
"description": "Create custom SMTP servers on the fly",
"main": "lib/smtp-server.js",
"scripts": {
"test": "grunt",
"format": "prettier --write \"**/*.{js,json,md}\"",
"update": "rm -rf node_modules package-lock.json && ncu -u && npm install"
},
"author": "Andris Reinman",
"license": "MIT-0",
"dependencies": {
"base32.js": "0.1.0",
"ipv6-normalize": "1.0.1",
"nodemailer": "7.0.11",
"punycode.js": "2.3.1"
},
"devDependencies": {
"chai": "4.4.1",
"eslint": "9.39.1",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "10.1.8",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-eslint": "26.0.0",
"grunt-mocha-test": "0.13.3",
"mocha": "10.7.3",
"pem": "1.14.8",
"prettier": "3.7.4"
},
"repository": {
"type": "git",
"url": "git://github.com/nodemailer/smtp-server.git"
},
"bugs": {
"url": "https://github.com/nodemailer/smtp-server/issues"
},
"keywords": [
"SMTP"
],
"engines": {
"node": ">=18.18.0"
}
}