emailjs/package.json

69 lines
1.4 KiB
JSON
Raw Normal View History

2011-02-23 21:23:37 +00:00
{
2020-04-21 03:20:06 +00:00
"name": "emailjs",
"description": "send text/html emails and attachments (files, streams and strings) from node.js to any smtp server",
"version": "4.0.3",
2020-04-21 03:20:06 +00:00
"author": "eleith",
"contributors": [
"izuzak",
"Hiverness",
"mscdex",
"jimmybergman",
"zackschuster"
],
"repository": {
"type": "git",
"url": "http://github.com/eleith/emailjs.git"
},
2020-05-24 23:42:21 +00:00
"type": "module",
2020-04-21 03:20:06 +00:00
"devDependencies": {
2021-11-19 23:51:32 +00:00
"@ledge/configs": "23.3.23322",
"@rollup/plugin-typescript": "8.3.2",
2021-11-19 23:51:32 +00:00
"@types/mailparser": "3.4.0",
2022-04-14 19:22:31 +00:00
"@types/node": "12.12.6",
2021-08-28 18:54:08 +00:00
"@types/smtp-server": "3.5.7",
2022-04-27 01:30:11 +00:00
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"ava": "4.2.0",
2022-04-27 01:30:11 +00:00
"eslint": "8.14.0",
2022-03-03 23:32:20 +00:00
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
2022-04-29 18:59:37 +00:00
"mailparser": "3.5.0",
"prettier": "2.6.2",
2022-04-21 21:37:05 +00:00
"rollup": "2.70.2",
2022-04-29 18:59:37 +00:00
"smtp-server": "3.11.0",
"ts-node": "10.9.1",
2022-04-27 01:30:11 +00:00
"tslib": "2.4.0",
"typescript": "4.3.5"
2022-04-13 16:35:51 +00:00
},
"peerDependencies": {
"typescript": ">=4.3.5"
2022-04-13 16:35:51 +00:00
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
2020-04-21 03:20:06 +00:00
},
2021-08-28 18:54:08 +00:00
"resolutions": {
2022-04-29 18:59:37 +00:00
"nodemailer": "6.7.4"
2021-08-28 18:54:08 +00:00
},
2021-05-20 15:19:29 +00:00
"engines": {
"node": ">=12"
2021-05-20 15:19:29 +00:00
},
2020-05-01 17:17:34 +00:00
"files": [
2022-04-14 17:17:24 +00:00
"email.js",
2020-05-01 17:17:34 +00:00
"email.ts",
2022-04-14 17:17:24 +00:00
"smtp"
2020-05-01 17:17:34 +00:00
],
2020-05-26 02:40:53 +00:00
"types": "./email.ts",
2020-05-24 14:47:53 +00:00
"exports": {
2022-04-14 17:17:24 +00:00
"default": "./email.js"
2020-05-24 14:47:53 +00:00
},
2020-04-21 03:20:06 +00:00
"scripts": {
"build": "rollup -c rollup.config.ts",
2020-04-24 16:32:32 +00:00
"lint": "eslint *.ts \"+(smtp|test)/*.ts\"",
2022-04-14 18:02:58 +00:00
"pretest": "yarn build",
"test": "ava"
2020-04-21 03:20:06 +00:00
},
2020-06-17 03:12:11 +00:00
"license": "MIT"
2011-02-23 21:23:37 +00:00
}