-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "@nhsdigital/eps-deployment-utils",
"version": "1.0.0",
"description": "Shared deployment utilities for EPS projects (spec publishing, config helpers, etc)",
"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.1018.0",
"@aws-sdk/client-lambda": "^3.1018.0",
"json-schema-to-ts": "^3.1.1"
},
"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"
}