-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 Bytes
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
{
"dependencies": {
"zod": "^4.1.11"
},
"description": "Common helper utilities for NHS Notify Supplier API",
"devDependencies": {
"@stylistic/eslint-plugin": "^3.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.27.0",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.1.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"license": "MIT",
"main": "src/index.ts",
"name": "@internal/helpers",
"private": true,
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:unit": "jest",
"typecheck": "tsc --noEmit"
},
"version": "0.1.0"
}