1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-07-05 20:10:37 +00:00
emailjs/package.json

47 lines
1022 B
JSON
Raw Normal View History

2011-02-23 21:23:37 +00:00
{
"name": "emailjs",
"description": "send text/html emails and attachments (files, streams and strings) from node.js to any smtp server",
2018-06-09 19:00:39 +00:00
"version": "2.1.0",
"author": "eleith",
"contributors": [
"izuzak",
"Hiverness",
"mscdex",
2018-06-09 19:00:39 +00:00
"jimmybergman",
"zackschuster"
],
"repository": {
"type": "git",
"url": "http://github.com/eleith/emailjs.git"
},
"dependencies": {
"addressparser": "^0.3.2",
2018-06-22 01:20:17 +00:00
"emailjs-mime-codec": "^2.0.7",
"starttls": "^1.0.1"
},
"devDependencies": {
2018-06-22 01:20:17 +00:00
"chai": "^4.1.2",
2018-05-27 04:25:08 +00:00
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-prettier": "^2.6.0",
2018-06-22 01:20:17 +00:00
"mailparser": "^2.2.0",
"mocha": "^5.2.0",
"prettier": "^1.13.5",
"smtp-server": "^3.4.6"
},
"engine": [
"node >= 6"
],
"main": "email.js",
"scripts": {
"test": "mocha -R spec"
2015-08-09 13:00:05 +00:00
},
2018-05-27 04:25:08 +00:00
"license": "MIT",
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
}
2011-02-23 21:23:37 +00:00
}