-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "@nhsdigital/eps-cdk-constructs",
"version": "1.0.0",
"description": "Common AWS CDK Constructs for NHS Digital EPS Projects",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check-licenses": "node_modules/.bin/license-checker --failOn GPL --failOn LGPL",
"lint": "echo \"Error: no linting specified\"",
"prepublishOnly": "cd packages/cdkConstructs && npm run prepublishOnly"
},
"repository": {
"type": "git",
"url": "https://github.com/NHSDigital/eps-cdk-utils"
},
"workspaces": [
"packages/cdkConstructs"
],
"keywords": [],
"author": "NHS Digital",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-plugin-import-newlines": "^1.4.0",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"license-checker": "^25.0.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
},
"dependencies": {
"aws-cdk": "^2.1100.1",
"aws-cdk-lib": "^2.234.1",
"cdk-nag": "^2.37.52",
"constructs": "^10.4.4",
"esbuild": "^0.27.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"type": "module",
"files": [
"packages/cdkConstructs/lib/src"
],
"main": "packages/cdkConstructs/lib/src/index.js",
"types": "packages/cdkConstructs/lib/src/index.d.ts"
}