-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "serverless-ses-forwarder",
"version": "1.0.0",
"description": "Serverless email forwarder for Amazon Simple Email Service",
"main": "handler.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejsexton82/ses-forwarder.git"
},
"keywords": [
"serverless",
"AWS SES",
"Amazon Simple Email Service",
"email forward"
],
"author": "E.J. Sexton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ejsexton82/ses-forwarder/issues"
},
"homepage": "https://github.com/ejsexton82/ses-forwarder#readme",
"dependencies": {
"aws-lambda-ses-forwarder": "git+https://github.com/ejsexton82/aws-lambda-ses-forwarder.git"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0"
}
}