-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1020 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
38
{
"name": "email-delivery-faas",
"version": "1.0.0",
"description": "Serverless function to deliver email sent from a website's contact form",
"keywords": [
"serverless",
"google-cloud-functions",
"FaaS",
"email"
],
"author": "Adab1ts <[email protected]> (https://www.adabits.org)",
"contributors": [
"Klaudia Alvarez <[email protected]> (https://github.com/laklau)",
"Carles Muiños <[email protected]> (https://github.com/zuzust)"
],
"repository": {
"type": "git",
"url": "https://github.com/adab1ts/email-delivery-faas.git"
},
"license": "MIT",
"engines": {
"node": ">=6"
},
"main": "index.js",
"scripts": {
"deploy": "serverless deploy",
"call": "serverless invoke --function",
"info": "serverless info",
"logs": "serverless logs --function",
"remove": "serverless remove"
},
"dependencies": {
"bunyan": "^1.8.12",
"cors": "^2.8.4",
"nodemailer": "^4.4.2",
"serverless-google-cloudfunctions": "^1.1.0"
}
}