UNPKG

feathers-mailer

Version:
72 lines (71 loc) 2.14 kB
{ "name": "feathers-mailer", "description": "Feathers mailer service", "version": "4.2.0", "homepage": "https://github.com/feathersjs-ecosystem/feathers-mailer", "main": "lib/", "types": "lib/", "keywords": [ "feathers", "feathers-plugin", "mail", "email", "mailer", "nodemailer" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/feathersjs-ecosystem/feathers-mailer.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs-ecosystem/feathers-mailer/issues" }, "engines": { "node": ">= 16" }, "scripts": { "prepublish": "npm run compile", "compile": "shx rm -rf lib/ && tsc", "publish": "git push origin --tags && npm run changelog && git push origin", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-mailer && git add CHANGELOG.md && git commit -am \"Updating changelog\"", "update-dependencies": "ncu -u", "lint": "eslint src/**/*.ts test/**/*.ts --fix", "mocha": "cross-env NODE_ENV=test TS_NODE_PROJECT='tsconfig.test.json' mocha --timeout 10000", "test": "npm run lint && npm run coverage", "coverage": "nyc npm run mocha" }, "directories": { "src": "src" }, "dependencies": { "nodemailer": "^6.9.16" }, "devDependencies": { "@eslint/js": "^9.17.0", "@types/mocha": "^10.0.10", "@types/node": "^22.10.5", "@types/nodemailer": "^6.4.17", "@types/nodemailer-stub-transport": "^1.1.8", "address-rfc2822": "^2.2.2", "cross-env": "^7.0.3", "eslint": "^9.17.0", "mocha": "^11.0.1", "nodemailer-stub-transport": "^1.1.0", "npm-check-updates": "^17.1.13", "nyc": "^17.1.0", "shx": "^0.3.4", "ts-node": "^10.9.2", "typescript": "^5.7.2", "typescript-eslint": "^8.19.0" } }