-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 807 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 807 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
{
"name": "hdf2asff",
"version": "1.0.0",
"description": "Tool for converting Heimdall Data Format to Amazon Security Findings Format",
"main": "index.js",
"repository": "https://github.com/mitre/hdf2asff.git",
"author": "Camden Moors <cmoors@mitre.org>",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-securityhub": "^3.31.0",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.10",
"@types/uuid": "^8.3.1",
"@types/winston": "^2.4.4",
"commander": "^8.1.0",
"inspecjs": "^2.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"typescript": "^4.4.2",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"scripts": {
"build": "tsc --esModuleInterop src/index.ts",
"start": "node src/index.js",
"dev": "npx ts-node src/index.ts"
}
}