1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-07-02 11:08:51 +00:00
emailjs/package.json

62 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",
2020-06-27 15:42:39 +00:00
"version": "3.2.1",
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-07-26 23:05:22 +00:00
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "8.4.0",
"@rollup/plugin-typescript": "5.0.2",
2020-05-24 14:47:53 +00:00
"@types/mailparser": "2.7.3",
2020-04-21 03:20:06 +00:00
"@types/smtp-server": "3.5.4",
2020-07-26 23:05:22 +00:00
"@typescript-eslint/eslint-plugin": "3.7.0",
"@typescript-eslint/parser": "3.7.0",
"ava": "3.10.1",
"eslint": "7.5.0",
2020-04-23 03:29:32 +00:00
"eslint-config-prettier": "6.11.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-04-23 03:29:32 +00:00
"prettier": "2.0.5",
2020-07-26 23:05:22 +00:00
"rollup": "2.23.0",
2020-06-25 15:59:38 +00:00
"smtp-server": "3.7.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-07-26 23:05:22 +00:00
"typescript": "3.9.7"
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
}