UNPKG

maildove

Version:

Send emails using Node.js only

51 lines (50 loc) 1.29 kB
{ "name": "maildove", "version": "0.0.1", "description": "Send emails using Node.js only", "main": "lib/maildove.js", "types": "lib/maildove.d.ts", "files": [ "lib/**/*" ], "scripts": { "build": "tsc --project tsconfig.json", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint -c .eslintrc.json . --ext .ts", "tests": "tsc --project tsconfig.json && node tests/mdovetester.js" }, "repository": { "type": "git", "url": "git+https://github.com/abbyck/maildove.git" }, "keywords": [ "email", "smtp", "starttls", "dkim", "smtp-server" ], "author": "Abhinav Krishna C K", "license": "GPL-2.0", "bugs": { "url": "https://github.com/abbyck/maildove/issues" }, "homepage": "https://github.com/abbyck/maildove#readme", "dependencies": { "dkim-signer": "^0.2.2", "email-addresses": "^5.0.0", "nodemailer": "^6.7.0", "winston": "^3.7.2" }, "devDependencies": { "@types/dkim-signer": "^0.2.2", "@types/node": "^16.11.25", "@types/nodemailer": "^6.4.4", "@typescript-eslint/eslint-plugin": "^5.1.0", "@typescript-eslint/parser": "^5.1.0", "eslint": "^8.0.1", "eslint-config-prettier": "^8.3.0", "prettier": "^2.4.1", "typescript": "^4.4.2" } }