-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"version": "0.0.10",
"name": "@software-hardware-integration-lab/log-engine",
"description": "Logging engine with ability to add plugins for any destination",
"author": {
"name": "Michael Howard",
"email": "Michael_Howard@SHI.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Software-Hardware-Integration-Lab/Log-Engine.git"
},
"imports": {
"#/*": "./bin/*"
},
"exports": {
".": {
"types": "./bin/index.d.ts",
"import": "./bin/index.js"
}
},
"type": "module",
"scripts": {
"build": "npm run clean:bin && tspc -p tsconfig.json",
"build:coverage": "npm run clean:bin && tspc -p coverage.tsconfig.json",
"build:prod": "npm run clean:bin && tspc -p prod.tsconfig.json",
"clean:bin": "node ./scripts/clean-bin.ts",
"lint": "eslint",
"test": "npm run build:coverage && vitest run",
"test:watch": "vitest",
"coverage": "npm run build:coverage && vitest run --coverage",
"validate:package": "npm run update:reachability-pin && npm run validate:package:skip-reachability",
"validate:package:skip-reachability": "node ./scripts/validate-audit-signatures.ts && npm run lint && npm run coverage && npm run build:prod && node ./scripts/validate-package.ts",
"update:reachability-pin": "node ./scripts/update-reachability-pin.ts",
"prepack": "npm run validate:package",
"postinstall": "ts-patch install -s"
},
"packageManager": "npm@12.1.0",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.20.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
},
"dependencies": {
"typia": "~12.1.1"
},
"devDependencies": {
"@azure/storage-blob": "^12.33.0",
"@software-hardware-integration-lab/development-utilities": "~3.0.0",
"@types/node": "~26.6.2",
"@vitest/coverage-v8": "~5.0.1",
"baseline-browser-mapping": "^2.11.25",
"ts-patch": "~4.0.1",
"typescript": "~6.0.3",
"vitest": "~5.0.1"
},
"peerDependencies": {
"@azure/storage-blob": "^12.33.0"
},
"peerDependenciesMeta": {
"@azure/storage-blob": {
"optional": true
}
},
"overrides": {
"function-bind": "npm:@socketregistry/function-bind@^1",
"hasown": "npm:@socketregistry/hasown@^1",
"is-core-module": "npm:@socketregistry/is-core-module@^1",
"is-interactive": "npm:@socketregistry/is-interactive@^1",
"is-unicode-supported": "npm:@socketregistry/is-unicode-supported@^1",
"path-parse": "npm:@socketregistry/path-parse@^1",
"safe-buffer": "npm:@socketregistry/safe-buffer@^1",
"safer-buffer": "npm:@socketregistry/safer-buffer@^1"
},
"resolutions": {
"function-bind": "npm:@socketregistry/function-bind@^1",
"hasown": "npm:@socketregistry/hasown@^1",
"is-core-module": "npm:@socketregistry/is-core-module@^1",
"is-interactive": "npm:@socketregistry/is-interactive@^1",
"is-unicode-supported": "npm:@socketregistry/is-unicode-supported@^1",
"path-parse": "npm:@socketregistry/path-parse@^1",
"safe-buffer": "npm:@socketregistry/safe-buffer@^1",
"safer-buffer": "npm:@socketregistry/safer-buffer@^1"
}
}