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.02 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": "4.2.0",
"description": "Serverless email forwarding using AWS Lambda and SES",
"main": "index.js",
"scripts": {
"check-coverage": "istanbul check-coverage --statements 100",
"lint": "eslint *.js example/*.js test/*.js",
"test": "istanbul cover _mocha -- --check-leaks --timeout 3000"
},
"dependencies": {
"aws-sdk": "~2.290.0"
},
"devDependencies": {
"coveralls": "^2.11.8",
"eslint": "^3.15.0",
"eslint-config-google": "~0.6.0",
"istanbul": "~0.4.2",
"mocha": "^3.2.0"
},
"engines": {
"node": ">=4.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"
}