-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
{
"name": "aws_lambda_guardduty",
"version": "1.0.3",
"description": "Lambda function to be called in CloudWatch when GuardDuty sends logs to CloudWatch. This script will write the malicious IP to a dedicated file in an S3 bucket. Firewall service (i.e. FortiOS) can pull this list, and add those malicious IPs to the blacklist",
"main": "index.js",
"files_to_deploy": [
"utils/",
"monitor.js",
"generator.js",
"index.js",
"package.json",
"package-lock.json"
],
"dependencies": {},
"devDependencies": {
"dpl": "^3.8.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.2.0",
"ftnt-devops-ci": "github:guardhao104/ftnt-devops-ci",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"request": "^2.87.0",
"rimraf": "^2.6.2"
},
"scripts": {
"pretest": "./node_modules/.bin/eslint --fix *.js;",
"deploy": "dpl",
"build": "node scripts/make_dist.js",
"test": "nyc mocha --recursive './test/mocha/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fortinet/aws-lambda-guardduty.git"
},
"keywords": [
"aws",
"lambda",
"guardduty",
"fortinet",
"fortigate",
"fortios",
"blacklist",
"malicious",
"ips"
],
"author": "fortinet",
"license": "MIT",
"bugs": {
"url": "https://github.com/fortinet/aws-lambda-guardduty/issues"
},
"homepage": "https://github.com/fortinet/aws-lambda-guardduty#readme"
}