forked from eahefnawy/serverless-mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "serverless-mailer",
"version": "0.0.1",
"description": "Dependencies for a Serverless Mailer Service",
"author": "Eslam A. Hefnawy <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/eahefnawy/serverless-mailer"
},
"engines": {
"node": ">=4.0"
},
"keywords": [
"serverless",
"email",
"mailer"
],
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha lib/__test__ -- -R spec --recursive",
"lint": "eslint .",
"lambda": "node_modules/mocha/bin/_mocha __test__"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.1",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"mock-require": "^1.3.0",
"sinon": "^1.17.5"
},
"dependencies": {
"bluebird": "^2.10.1",
"dotenv": "^2.0.0",
"email-templates": "^2.0.1",
"graphiql": "^0.9.3",
"handlebars": "^3.0.0",
"nodemailer": "^1.5.0",
"nodemailer-mailgun-transport": "^1.2.4"
}
}