-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "javascript-kata-1",
"version": "1.0.0",
"type": "module",
"description": "Code kata in JavaScript where you have to write a library of books and magazines.",
"private": true,
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . && prettier -c .",
"lint:fix": "eslint --fix . && prettier -w --log-level=warn .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/echocat/javascript-kata-1.git"
},
"keywords": [
"javascript",
"kata"
],
"author": "echocat",
"license": "MIT",
"bugs": {
"url": "https://github.com/echocat/javascript-kata-1/issues"
},
"homepage": "https://github.com/echocat/javascript-kata-1#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-yml": "^3.3.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"vite": "^8.0.9",
"vitest": "^4.1.4",
"yaml-eslint-parser": "^2.0.0"
}
}