dwyl/sendemail

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "sendemail",
  "version": "4.0.3",
  "description": "Simplifies reliably sending emails from your node.js apps!",
  "main": "lib/index.js",
  "scripts": {
    "nocov": "tape ./test/*.js",
    "test": "nyc tape ./test/*.test.js | tap-nyc",
    "lint": "node_modules/.bin/goodparts lib/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dwyl/sendemail.git"
  },
  "author": "@dwyl & pals!",
  "license": "GPL-2.0",
  "engines": {
    "node": ">= 12.5.0"
  },
  "bugs": {
    "url": "https://github.com/dwyl/sendemail/issues"
  },
  "homepage": "https://github.com/dwyl/sendemail#readme",
  "directories": {
    "test": "test"
  },
  "dependencies": {
    "aws-sdk": "^2.670.0",
    "handlebars": "^4.7.6"
  },
  "devDependencies": {
    "decache": "^4.5.1",
    "env2": "^2.2.2",
    "goodparts": "1.3.0",
    "istanbul": "^0.4.0",
    "nyc": "^15.0.1",
    "pre-commit": "1.2.2",
    "tap-nyc": "^1.0.3",
    "tape": "^5.0.0"
  },
  "pre-commit": [
    "lint",
    "test"
  ],
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "include": [
      "lib/index.js"
    ],
    "exclude": [
      "test/"
    ],
    "reporter": [
      "lcov",
      "text-summary"
    ],
    "cache": false,
    "all": true,
    "report-dir": "./coverage"
  },
  "keywords": [
    "email",
    "verification",
    "registration",
    "reset",
    "welcome",
    "send",
    "simple",
    "template"
  ]
}