-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 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
{
"name": "@dmptool/utils",
"version": "2.1.5",
"description": "Helper/Utility functions for use in the DMP Tool services. Particularly AWS tooling and maDMP serialization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist",
"schemas"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"lint": "eslint . --ignore-pattern dist/ --ignore-pattern node_modules/",
"prepublishOnly": "npm run build",
"test": "jest --config jest.config.ts",
"prepare": "npm run build",
"postinstall": "husky || true",
"type-check": "tsc --noEmit",
"trivy-high": "./scripts/trivy-high.sh",
"trivy-med": "./scripts/trivy-med.sh"
},
"dependencies": {
"@aws-sdk/s3-presigned-post": "^3.1068.0",
"@dmptool/types": "^3.1.6",
"@elastic/ecs-pino-format": "^1.5.0",
"date-fns": "^4.4.0",
"jsonschema": "^1.5.0",
"mysql2": "^3.22.5",
"pino": "^10.3.1",
"pino-lambda": "^4.4.1"
},
"peerDependencies": {
"@aws-sdk/client-cloudformation": "^3.1068.0",
"@aws-sdk/client-dynamodb": "^3.1068.0",
"@aws-sdk/client-s3": "^3.1068.0",
"@aws-sdk/client-sns": "^3.1068.0",
"@aws-sdk/client-sqs": "^3.1068.0",
"@aws-sdk/client-ssm": "^3.1068.0",
"@aws-sdk/s3-request-presigner": "^3.1068.0",
"@aws-sdk/util-dynamodb": "^3.996.4",
"@smithy/node-http-handler": "^4.7.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@smithy/util-stream": "^4.6.7",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.3",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^10.5.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"allowScripts": {
"@dmptool/types@3.1.4": true
}
}