1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-07-04 19:58:51 +00:00
emailjs/package.json

63 lines
1.5 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-05-28 21:36:36 +00:00
"version": "3.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",
2020-04-21 03:20:06 +00:00
"devDependencies": {
"@ledge/configs": "23.0.0",
2020-06-09 05:14:11 +00:00
"@rollup/plugin-commonjs": "13.0.0",
"@rollup/plugin-node-resolve": "8.0.1",
2020-05-24 14:47:53 +00:00
"@rollup/plugin-typescript": "4.1.2",
"@types/mailparser": "2.7.3",
2020-04-21 03:20:06 +00:00
"@types/smtp-server": "3.5.4",
2020-06-09 05:14:11 +00:00
"@typescript-eslint/eslint-plugin": "3.2.0",
"@typescript-eslint/parser": "3.2.0",
"addressparser": "1.0.1",
2020-05-24 14:47:53 +00:00
"ava": "3.8.2",
2020-06-09 05:14:11 +00:00
"eslint": "7.2.0",
2020-04-23 03:29:32 +00:00
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"mailparser": "2.7.7",
"prettier": "2.0.5",
2020-06-09 05:14:11 +00:00
"rollup": "2.15.0",
2020-04-23 03:29:32 +00:00
"smtp-server": "3.6.0",
2020-05-29 05:00:41 +00:00
"ts-node": "8.10.2",
2020-05-24 14:47:53 +00:00
"tslib": "2.0.0",
2020-06-09 05:14:11 +00:00
"typescript": "3.9.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",
"test": "ava --serial",
"test-cjs": "npm run build && npm run test -- --node-arguments='--title=cjs'"
2020-04-21 03:20:06 +00:00
},
"license": "MIT"
2011-02-23 21:23:37 +00:00
}