-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "problem-solving",
"version": "CP-28",
"description": "This Package is all about solving coding problems",
"homepage": "https://github.com/Dennis-Bauer/Problem-Solving#readme",
"bugs": {
"url": "https://github.com/Dennis-Bauer/Problem-Solving/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dennis-Bauer/Problem-Solving.git"
},
"license": "ISC",
"author": "Dennis Bauer",
"type": "commonjs",
"scripts": {
"test": "vitest run ./Problems",
"test:dev": "vitest ./Problems --reporter=verbose",
"test:file": "vitest",
"test:ci": "vitest --run --passWithNoTests --reporter=json > vitest-report.json",
"build": "tsc",
"clear": "rm -rf ./build",
"normalize": "npm run clear && biome check --write --unsafe",
"prepare": "husky install"
},
"dependencies": {
"decimal.js": "^10.6.0",
"husky": "^9.1.7",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/node": "^24.3.0"
}
}