smartsmtp/package.json

59 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-08-12 14:13:20 +00:00
{
2024-03-30 20:48:41 +00:00
"name": "@push.rocks/smartsmtp",
2022-08-07 16:25:49 +00:00
"version": "3.0.3",
2020-08-12 14:13:20 +00:00
"private": false,
2024-04-14 16:19:48 +00:00
"description": "A module for handling SMTP operations such as sending emails via SMTP or sendmail transport.",
2020-08-12 14:13:20 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 14:37:19 +00:00
"type": "module",
2020-08-12 14:13:20 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-08-07 16:23:53 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2020-08-12 14:13:20 +00:00
},
"devDependencies": {
2022-08-07 14:37:19 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4"
2020-08-12 14:13:20 +00:00
},
"dependencies": {
2022-08-07 16:18:28 +00:00
"@pushrocks/smartmail": "^1.0.21",
2022-08-07 14:37:19 +00:00
"@types/nodemailer": "^6.4.5",
"nodemailer": "^6.7.7"
2020-08-12 14:13:20 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:19:48 +00:00
],
"keywords": [
"SMTP",
"email",
"nodemailer",
"sendmail",
"smartmail integration",
"TypeScript",
"email sending",
"email templates",
"programming"
2024-05-29 12:16:17 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartsmtp",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartsmtp.git"
}
2024-03-30 20:48:41 +00:00
}