-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "@nhsdigital/eps-cdk-constructs",
"version": "1.0.0",
"description": "Common AWS CDK Constructs for NHS Digital EPS Projects",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint --max-warnings 0 --fix --config ../../eslint.config.mjs .",
"test": "vitest run --coverage",
"check-licenses": "license-checker --failOn GPL --failOn LGPL"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NHSDigital/eps-cdk-utils.git"
},
"keywords": [],
"author": "NHSDigital",
"license": "MIT",
"private": false,
"type": "module",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.1023.0",
"@aws-sdk/client-route-53": "^3.1023.0",
"@aws-sdk/client-s3": "^3.1023.0",
"aws-cdk": "^2.1116.0",
"aws-cdk-lib": "^2.247.0",
"cdk-nag": "^2.37.52",
"constructs": "^10.6.0"
},
"bugs": {
"url": "https://github.com/NHSDigital/eps-cdk-utils/issues"
},
"homepage": "https://github.com/NHSDigital/eps-cdk-utils#readme",
"files": [
"lib"
],
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"devDependencies": {
"@types/node": "^25.5.0"
}
}