-
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.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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-spine-client",
"version": "1.0.0",
"description": "The code to invoke the Spine client",
"scripts": {
"build": "tsc",
"lint": "eslint --max-warnings 0 --fix --config ./eslint.config.mjs .",
"test": "POWERTOOLS_DEV=true NODE_OPTIONS=--experimental-vm-modules jest --no-cache --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NHSDigital/nhs-eps-spine-client.git"
},
"keywords": [],
"author": "NHSDigital",
"license": "MIT",
"private": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.57.2",
"axios-mock-adapter": "^2.1.0",
"eslint": "^10.2.0",
"eslint-plugin-import-newlines": "^2.0.0",
"globals": "^17.4.0",
"jest": "^30.0.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.32.0",
"@types/mustache": "^4.2.6",
"axios": "^1.15.0",
"axios-retry": "^4.5.0",
"mustache": "^4.2.0"
},
"bugs": {
"url": "https://github.com/NHSDigital/nhs-eps-spine-client/issues"
},
"homepage": "https://github.com/NHSDigital/nhs-eps-spine-client#readme",
"files": [
"lib"
],
"main": "lib/index.js"
}