-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "@fastnloud/nest-mail",
"version": "1.0.4",
"description": "Mail module for Nest that uses Nodemailer to deliver messages.",
"homepage": "https://github.com/fastnloud/nest-mail#readme",
"main": "dist/index.js",
"author": "jaap",
"license": "MIT",
"scripts": {
"build": "tsc",
"prettier": "prettier --check \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/fastnloud/nest-mail.git"
},
"dependencies": {
"joi": "^17.9.2",
"nodemailer": "^6.9.3"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/config": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.8",
"npm-check-updates": "^16.10.13",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"keywords": [
"nest",
"mail",
"smtp transporter",
"nodemailer"
],
"files": [
"dist/**/*.{js,ts}"
]
}