-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
54
55
56
57
58
59
{
"name": "nodejs-kata-1",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Code kata for NodeJs where you have to write a library of books and magazines.",
"files": [
"dist"
],
"private": true,
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsup",
"start": "npm run build && node dist/index.js",
"lint": "eslint . && prettier -c .",
"lint:fix": "eslint --fix . && prettier -w --log-level=warn .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git@github.com:echocat/nodejs-kata-1.git"
},
"keywords": [
"nodejs",
"node",
"typescript",
"kata"
],
"author": "echocat",
"license": "MIT",
"bugs": {
"url": "https://github.com/echocat/nodejs-kata-1/issues"
},
"homepage": "https://github.com/echocat/nodejs-kata-1#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-yml": "^3.3.2",
"globals": "^17.6.0",
"jiti": "^2.6.1",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5",
"yaml-eslint-parser": "^2.0.0"
}
}