-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@deepalert/deepalert",
"version": "1.2.0-alpha",
"scripts": {
"watch": "tsc -w",
"prepare": "tsc",
"test": "jest"
},
"main": "./cdk/deepalert-stack.js",
"type": "./cdk/deepalert-stack.d.ts",
"files": [
"Makefile",
"go.*",
"*.go",
"internal",
"lambda",
"cdk",
"tsconfig.json"
],
"devDependencies": {
"@aws-cdk/assert": "1.204.0",
"@aws-cdk/aws-dynamodb": "1.204.0",
"@aws-cdk/aws-iam": "1.204.0",
"@aws-cdk/aws-lambda": "1.204.0",
"@aws-cdk/aws-lambda-event-sources": "1.204.0",
"@aws-cdk/aws-lambda-nodejs": "1.204.0",
"@aws-cdk/aws-sns": "1.204.0",
"@aws-cdk/aws-sns-subscriptions": "1.204.0",
"@aws-cdk/aws-sqs": "1.204.0",
"@aws-cdk/aws-stepfunctions": "1.204.0",
"@aws-cdk/aws-stepfunctions-tasks": "1.204.0",
"@aws-cdk/core": "1.204.0",
"@types/jest": "27.5.2",
"@types/node": "18.19.130",
"aws-cdk": "1.204.0",
"jest": "27.5.1",
"ts-jest": "27.1.5",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"dependencies": {
"source-map-support": "0.5.21"
},
"cdk-lambda": "/asset-output/index.js",
"targets": {
"cdk-lambda": {
"context": "node",
"includeNodeModules": {
"aws-sdk": false
},
"sourceMap": false,
"minify": false,
"engines": {
"node": ">= 12"
}
}
},
"description": "Serverless SOAR (Security Orchestration, Automation and Response) framework for automatic inspection and evaluation of security alert.",
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepalert/deepalert.git"
},
"author": "Masayoshi Mizutani",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepalert/deepalert/issues"
},
"homepage": "https://github.com/deepalert/deepalert"
}