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

83 lines
1.7 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",
"version": "2.2.0",
"author": "eleith",
"contributors": [
"izuzak",
"Hiverness",
"mscdex",
"jimmybergman",
"zackschuster"
],
"repository": {
"type": "git",
"url": "http://github.com/eleith/emailjs.git"
},
"dependencies": {
2020-04-23 03:29:32 +00:00
"addressparser": "1.0.1",
"emailjs-mime-codec": "2.0.9"
2020-04-21 03:20:06 +00:00
},
"devDependencies": {
"@ledge/configs": "23.0.0",
2020-04-21 03:20:06 +00:00
"@ledge/types": "6.1.0",
2020-04-23 03:29:32 +00:00
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-typescript": "4.1.1",
2020-04-21 03:20:06 +00:00
"@types/mailparser": "2.7.2",
"@types/smtp-server": "3.5.4",
2020-05-01 14:27:14 +00:00
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"ava": "3.8.1",
2020-04-23 03:29:32 +00:00
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"mailparser": "2.7.7",
"prettier": "2.0.5",
2020-05-01 14:27:14 +00:00
"rollup": "2.7.6",
2020-04-23 03:29:32 +00:00
"smtp-server": "3.6.0",
2020-05-01 14:27:14 +00:00
"ts-node": "8.9.1",
"tslib": "1.11.1",
2020-04-23 04:26:49 +00:00
"typescript": "3.8.3"
2020-04-21 03:20:06 +00:00
},
"engine": [
"node >= 10"
],
2020-04-24 16:39:37 +00:00
"main": "email.cjs",
"exports": {
"import": "email.mjs",
"require": "email.cjs"
},
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-05-01 16:25:32 +00:00
"test": "ava --serial",
"test:rollup": "ava --file rollup/email.bundle.test.js"
2020-04-21 03:20:06 +00:00
},
"license": "MIT",
"ava": {
"files": [
"test/*.ts"
],
"extensions": [
"ts"
],
"require": [
2020-04-23 04:48:43 +00:00
"ts-node/register"
],
"environmentVariables": {
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
2020-05-01 17:01:47 +00:00
}
2020-04-21 03:20:06 +00:00
},
"eslintIgnore": [
"rollup.config.js",
"rollup/email.bundle.js",
"email.esm.js"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
}
2011-02-23 21:23:37 +00:00
}