smartsmtp/package.json

44 lines
971 B
JSON
Raw Normal View History

2020-08-12 14:13:20 +00:00
{
"name": "@pushrocks/smartsmtp",
2022-08-07 16:25:49 +00:00
"version": "3.0.3",
2020-08-12 14:13:20 +00:00
"private": false,
"description": "a module for handling smtp stuff",
"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"
]
2022-08-07 16:23:54 +00:00
}