package.json 945 Bytes
Newer Older
andris9's avatar
andris9 committed
1
{
2 3
  "name": "nodemailer",
  "description": "Easy to use module to send e-mails, supports unicode and SSL/TLS",
Andris Reinman's avatar
Andris Reinman committed
4
  "version": "0.5.7",
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
  "author": "Andris Reinman",
  "maintainers": [
    {
      "name": "andris",
      "email": "andris@kreata.ee"
    }
  ],
  "homepage": "http://github.com/andris9/nodemailer",
  "repository": {
    "type": "git",
    "url": "http://github.com/andris9/nodemailer.git"
  },
  "scripts": {
    "test": "nodeunit test/"
  },
  "main": "./lib/nodemailer",
  "licenses": [
    {
      "type": "MIT",
      "url": "http://github.com/andris9/nodemailer/blob/master/LICENSE"
    }
  ],
  "dependencies": {
28
    "mailcomposer": "~0.2.4",
Andris Reinman's avatar
Andris Reinman committed
29
    "simplesmtp": "~0.2 || ~0.3"
30 31 32 33
  },
  "devDependencies": {
    "nodeunit": "*"
  },
34 35 36
  "optionalDependencies": {
    "readable-stream": "*"
  },
Andris Reinman's avatar
Andris Reinman committed
37
  "engines" : { "node" : ">=0.6.0" },
38 39 40 41 42 43 44 45
  "keywords": [
    "e-mail",
    "mime",
    "email",
    "mail",
    "sendmail",
    "ses"
  ]
Andris Reinman's avatar
Andris Reinman committed
46
}