-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 758 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
30
31
32
33
34
35
36
{
"name": "azure-report-utility",
"version": "1.0.0",
"main": "index.js",
"bin": "index.js",
"scripts": {
"build": "pkg index.js --targets node18-macos-arm64 --output build/abc"
},
"keywords": [],
"type": "commonjs",
"author": "",
"license": "ISC",
"description": "utility for interfacing with Azure Blob storage",
"dependencies": {
"@elastic/ecs-winston-format": "^1.5.3",
"azure-storage": "^2.10.7",
"commander": "^13.1.0",
"http-status-codes": "^2.3.0",
"js-yaml": "^4.1.0",
"pkg": "^5.8.1",
"winston": "^3.17.0"
},
"pkg": {
"scripts": [
"index.js",
"*.js",
"*/*.js"
],
"assets": [
"config.yaml"
],
"targets": [
"node18-macos-arm64"
]
}
}