forked from arithmetric/aws-lambda-ses-forwarder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "aws-lambda-ses-forwarder",
"version": "5.0.0",
"description": "Serverless email forwarding using AWS Lambda and SES",
"main": "index.js",
"scripts": {
"check-coverage": "nyc report --reporter=lcov",
"lint": "eslint *.js example/*.js test/*.js",
"test": "nyc --statements 100 -- mocha -- --check-leaks --timeout 3000"
},
"dependencies": {
"aws-sdk": "~2.631.0"
},
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^6.8.0",
"eslint-config-google": "~0.6.0",
"mocha": "^6.2.2",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arithmetric/aws-lambda-ses-forwarder.git"
},
"keywords": [
"aws",
"email",
"lambda"
],
"author": "Joe Turgeon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arithmetric/aws-lambda-ses-forwarder/issues"
},
"homepage": "https://github.com/arithmetric/aws-lambda-ses-forwarder#readme"
}