UNPKG

nodemailer-trap-plugin

Version:

Nodemailer plugin to intercept emails in non production environments

81 lines (80 loc) 1.95 kB
{ "name": "nodemailer-trap-plugin", "version": "4.0.0", "description": "Nodemailer plugin to intercept emails in non production environments", "main": "index.js", "files": [ "lib/**.*", "index.js" ], "engines": { "node": ">=10" }, "author": { "name": "Alexey Kucherenko", "url": "https://github.com/killmenot" }, "keywords": [ "nodemailer", "plugin", "trap", "interceptor", "staging", "non production", "environment" ], "license": "MIT", "homepage": "https://github.com/killmenot/nodemailer-trap-plugin", "repository": { "type": "git", "url": "git@github.com:killmenot/nodemailer-trap-plugin.git" }, "bugs": { "url": "https://github.com/killmenot/nodemailer-trap-plugin/issues" }, "scripts": { "eslint": "eslint lib test index.js --fix", "remark": "remark .", "lint": "npm run eslint && npm run remark", "test": "mocha", "coverage": "nyc --reporter=html --reporter=text mocha", "coveralls": "nyc report --reporter=text-lcov | coveralls" }, "nyc": { "all": true, "include": [ "lib/**/*.js" ], "exclude": [ "test/**/*.js" ] }, "remarkConfig": { "plugins": [ "remark-preset-lint-recommended" ] }, "dependencies": { "addressparser": "^1.0.1", "escape-string-regexp": "^4.0.0", "string-format": "^2.0.0" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "chai": "^4.2.0", "coveralls": "^3.1.0", "eslint": "^7.11.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.22.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "husky": "^4.3.0", "jshint": "^2.12.0", "mocha": "^8.2.0", "nyc": "^15.1.0", "remark-cli": "^8.0.1", "remark-preset-lint-recommended": "^4.0.1" } }