emailjs/package.json

60 lines
1.3 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",
2020-08-08 21:48:31 +00:00
"version": "3.3.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",
2020-04-21 03:20:06 +00:00
"devDependencies": {
"@ledge/configs": "23.0.0",
2020-10-30 05:50:35 +00:00
"@rollup/plugin-typescript": "6.1.0",
"@types/mailparser": "2.7.4",
"@types/smtp-server": "3.5.5",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"ava": "3.13.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
2020-06-17 03:24:09 +00:00
"eslint-plugin-prettier": "3.1.4",
2020-07-26 23:05:22 +00:00
"mailparser": "2.8.0",
2020-10-30 05:50:35 +00:00
"prettier": "2.1.2",
"rollup": "2.32.1",
2020-06-25 15:59:38 +00:00
"smtp-server": "3.7.0",
2020-09-04 05:03:02 +00:00
"ts-node": "9.0.0",
2020-10-30 05:50:35 +00:00
"tslib": "2.0.3",
"typescript": "4.0.5"
2020-04-21 03:20:06 +00:00
},
"engine": [
"node >= 10"
],
2020-05-01 17:17:34 +00:00
"files": [
"email.ts",
2020-05-24 20:40:01 +00:00
"smtp",
"rollup"
2020-05-01 17:17:34 +00:00
],
2020-05-26 02:40:53 +00:00
"main": "./rollup/email.cjs",
"types": "./email.ts",
2020-05-24 14:47:53 +00:00
"exports": {
2020-05-26 02:40:53 +00:00
"import": "./rollup/email.mjs",
"require": "./rollup/email.cjs"
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\"",
2020-06-09 01:51:45 +00:00
"tsc": "tsc",
2020-07-27 01:04:23 +00:00
"test": "ava",
"test-cjs": "npm run build && npm run test -- --node-arguments='--title=cjs'"
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
}