-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 967 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "mail-service",
"version": "0.0.1",
"description": "Centralised template repository that receives json objects, applies a template and sends an email.",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/domgom/mail-service"
},
"keywords": [
"mail",
"node",
"template"
],
"author": "[email protected]",
"license": "ASF",
"bugs": {
"url": "https://github.com/domgom/mail-service/issues"
},
"homepage": "https://github.com/domgom/mail-service",
"devDependencies": {
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"mocha": "^1.21.5"
},
"dependencies": {
"concat-stream": "^1.4.6",
"nodemailer": "^1.3.0",
"nodemailer-smtp-pool": "^0.1.8",
"nodemailer-smtp-transport": "^0.1.13",
"nodemailer-wellknown": "^0.1.2"
}
}