emailjs/package.json

68 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",
2022-04-20 22:22:37 +00:00
"version": "4.0.0",
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",
2022-05-06 19:58:24 +00:00
"packageManager": "yarn@1.22.18",
2020-04-21 03:20:06 +00:00
"devDependencies": {
2021-11-19 23:51:32 +00:00
"@ledge/configs": "23.3.23322",
2022-06-14 17:11:49 +00:00
"@rollup/plugin-typescript": "8.3.3",
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-06-14 17:11:49 +00:00
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"ava": "4.3.0",
"eslint": "8.17.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",
2022-06-14 17:11:49 +00:00
"prettier": "2.7.0",
"rollup": "2.75.6",
2022-04-29 18:59:37 +00:00
"smtp-server": "3.11.0",
2022-06-14 17:11:49 +00:00
"ts-node": "10.8.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-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\"",
"prepublishOnly": "eslint --fix email.js",
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
}