forked from orliesaurus/nodemailer-mailgun-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "nodemailer-mailgun-transport",
"main": "src/index.js",
"description": "A transport module to use with nodemailer to leverage Mailgun's REST API",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "[email protected]:orliesaurus/nodemailer-mailgun-transport.git"
},
"scripts": {
"test": "standard src && faucet",
"prepublish": "tsc --allowJs --outFile es5/index.js src/index.js"
},
"keywords": [
"email",
"nodemailer",
"mailgun"
],
"maintainers": [
{
"name": "orlie",
"email": "[email protected]",
"web": "http://mailgun.com"
}
],
"bugs": {
"web": "https://github.com/orliesaurus/nodemailer-mailgun-transport/issues"
},
"licenses": [
{
"name": "MIT",
"url": "https://github.com/orliesaurus/nodemailer-mailgun-transport/blob/master/LICENSE"
}
],
"homepage": "http://mailgun.com",
"dependencies": {
"consolidate": "https://github.com/eifo/consolidate.js.git",
"mailgun-js": "^0.22.0"
},
"devDependencies": {
"faucet": "0.0.1",
"handlebars": "^4.7.6",
"prettier": "^1.18.2",
"standard": "^14.1.0",
"tape": "^4.11.0",
"tape-catch": "^1.0.6",
"typescript": "^3.6.2"
},
"files": [
"src",
"es5"
]
}