forked from edfenergy-stevebowerman/javascript-code-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 730 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 730 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
{
"name": "javascript-code-test",
"version": "1.0.0",
"description": "`BookSearchApiClient` is a simple class that makes a call to a http API to retrieve a list of books and return them.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .js,.ts",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"fast-xml-parser": "^5.2.5",
"jsdom": "^26.1.0",
"msw": "^2.10.4",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4",
"zod": "^4.0.14"
}
}