-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 809 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 809 Bytes
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
{
"name": "github-security-alerts-to-slack",
"version": "1.0.0",
"description": "Webhook receiver for GitHub security alerts that sends a message to Slack",
"main": "handler.js",
"scripts": {
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ragtagopen/github-security-alerts-to-slack.git"
},
"author": "Dan Ryan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ragtagopen/github-security-alerts-to-slack/issues"
},
"homepage": "https://github.com/ragtagopen/github-security-alerts-to-slack#readme",
"dependencies": {
"@sentry/node": "^5.1.0",
"axios": "^0.19.0",
"serverless": "^1.47.0"
},
"devDependencies": {
"dotenv": "^8.0.0",
"jest": "^24.8.0",
"serverless-offline": "^5.7.3"
}
}