-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 907 Bytes
/
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
{
"name": "zation-service-nodemailer",
"version": "0.6.0",
"license": "MIT",
"description": "Zation service for NodeMailer.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run compile",
"compile": "rm -rf dist/ && tsc -p ./",
"prepublishOnly": "npm run build",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ZationServer/zation-service-nodemailer.git"
},
"files": [
"dist/**/*",
"!.DS_Store"
],
"author": {
"name": "Ing. Luca Gian Scaringella",
"email": "lucacode1@gmail.com"
},
"dependencies": {
"@types/nodemailer": "^6.4.4",
"nodemailer": "^6.7.5"
},
"peerDependencies": {
"zation-server": ">=3.0.0-pre-alpha.3",
"zation-service": "^0.8.0",
"zation-bag-extension": "^7.0.0"
},
"devDependencies": {
"typescript": "^4.7.4"
}
}