-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
55 lines (55 loc) · 1.27 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
54
55
{
"name": "nodemailer-mailgun-transport",
"main": "src/index.js",
"description": "A transport module to use with nodemailer to leverage Mailgun's REST API",
"version": "2.1.5",
"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": "https://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": "^0.15.1",
"form-data": "^4.0.0",
"mailgun.js": "^8.0.1"
},
"devDependencies": {
"@types/node": "^18.7.18",
"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"
]
}