emailjs/package.json

60 lines
1.3 KiB
JSON
Raw Permalink 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-12-01 21:13:50 +00:00
"version": "3.4.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": {
2020-11-30 04:49:27 +00:00
"@ledge/configs": "23.3.223",
2020-10-30 05:50:35 +00:00
"@rollup/plugin-typescript": "6.1.0",
2020-11-30 04:49:27 +00:00
"@types/mailparser": "3.0.0",
2020-10-30 05:50:35 +00:00
"@types/smtp-server": "3.5.5",
2020-11-30 04:49:27 +00:00
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
2020-10-30 05:50:35 +00:00
"ava": "3.13.0",
2020-11-30 04:49:27 +00:00
"eslint": "7.14.0",
2020-10-30 05:50:35 +00:00
"eslint-config-prettier": "6.15.0",
2020-06-17 03:24:09 +00:00
"eslint-plugin-prettier": "3.1.4",
2020-11-30 16:25:37 +00:00
"mailparser": "3.0.1",
2020-11-30 04:49:27 +00:00
"prettier": "2.2.1",
"rollup": "2.34.0",
"smtp-server": "3.8.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",
2020-11-30 04:49:27 +00:00
"typescript": "4.1.2"
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
}