-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "maildove",
"version": "0.0.1",
"description": "Send emails using Node.js only",
"main": "lib/maildove.js",
"types": "lib/maildove.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.json . --ext .ts",
"tests": "tsc --project tsconfig.json && node tests/mdovetester.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abbyck/maildove.git"
},
"keywords": [
"email",
"smtp",
"starttls",
"dkim",
"smtp-server"
],
"author": "Abhinav Krishna C K",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/abbyck/maildove/issues"
},
"homepage": "https://github.com/abbyck/maildove#readme",
"dependencies": {
"dkim-signer": "^0.2.2",
"email-addresses": "^5.0.0",
"nodemailer": "^6.7.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/dkim-signer": "^0.2.2",
"@types/node": "^16.11.25",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"typescript": "^4.4.2"
}
}