-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
40
41
42
{
"name": "aws-lambda-slack-notifications",
"version": "1.0.0",
"description": "Slack notifications through AWS Lambda + SNS",
"main": "index.js",
"scripts": {
"package": "yarn install && mkdir -p dist && zip -r dist/aws-lambda-slack-notifications.zip configs handlers index.js package.json yarn.lock README.md",
"lint": "npx eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kelyvin/aws-lambda-slack-notifications.git"
},
"keywords": [
"aws",
"lambda",
"sns",
"cloudwatch",
"aws-sns",
"aws-cloudwatch",
"aws-lambda",
"slack",
"aws-slack"
],
"engines": {
"node": ">=12.0.0"
},
"author": "Kelvin Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/kelyvin/aws-lambda-slack-notifications/issues"
},
"homepage": "https://github.com/kelyvin/aws-lambda-slack-notifications#readme",
"dependencies": {
"aws-sdk": "^2.310.0",
"https": "^1.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"eslint": "^7.3.1"
}
}