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

76 lines
1.6 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": {
"addressparser": "^0.3.2",
"emailjs-mime-codec": "^2.0.7"
},
"devDependencies": {
"@ledge/configs": "22.0.2",
"@ledge/types": "6.1.0",
"@types/mailparser": "2.7.2",
"@types/smtp-server": "3.5.4",
"ava": "3.7.1",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-prettier": "^2.6.2",
"mailparser": "^2.2.0",
"prettier": "^1.13.7",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"smtp-server": "^3.4.6",
"typescript": "3.8.3",
"ts-node": "8.9.0"
},
"engine": [
"node >= 10"
],
"main": "email.js",
"type": "module",
2020-04-21 03:20:06 +00:00
"scripts": {
2018-08-06 18:57:27 +00:00
"rollup": "rollup -c rollup.config.js && npm run rollup:test",
"rollup:test": "npm run test -- --file rollup/email.bundle.test.js",
2020-04-21 03:20:06 +00:00
"test": "ava"
},
"license": "MIT",
"ava": {
"files": [
"test/*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
],
"nodeArguments": [
"--experimental-modules"
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
}