-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.36 KB
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
{
"name": "lambda-email-service",
"version": "1.0.0",
"description":
"AWS Lambda function (Node.js) to send email via Simple Email Service.",
"main": "handler.js",
"scripts": {
"debug": "node --nolazy --inspect-brk=9229 myProgram.js",
"deploy": "sls deploy -v",
"deploy-sendMessageViaEmail": "sls deploy function -f sendMessageViaEmail",
"invoke": "sls invoke -f sendMessageViaEmail",
"invoke-local":
"sls invoke local -f sendMessageViaEmail -p ./tests/data.json",
"logs": "sls logs -f sendMessageViaEmail -t",
"serverless": "serverless",
"sls": "serverless",
"service-info": "sls info",
"test": "yarn test-email && yarn test-email-no-optional",
"test-email":
"sls invoke local -f sendMessageViaEmail -p ./tests/email.json",
"test-email-no-optional":
"sls invoke local -f sendMessageViaEmail -p ./tests/email-no-optional.json"
},
"repository": "git+https://github.com/jonurry/lambda-email-service.git",
"keywords": [],
"author": "Jon Urry <github@agileweb.co.uk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonurry/lambda-email-service/issues"
},
"homepage": "https://github.com/jonurry/lambda-email-service#readme",
"dependencies": {
"aws-sdk": "^2.235.1",
"serverless": "^1.27.2",
"yarn": "^1.6.0"
},
"directories": {
"test": "tests"
},
"private": false
}