-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.52 KB
/
package.json
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
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "My attempt of solving Advent of Code puzzles.",
"private": true,
"type": "module",
"scripts": {
"check": "tsc --noEmit",
"format": "prettier --write .",
"lint:js": "eslint .",
"lint": "npm run lint:js",
"prepare": "husky",
"test": "node --experimental-strip-types --no-warnings --test --watch",
"test:ci": "mkdir -p coverage && node --experimental-strip-types --experimental-test-coverage --no-warnings --test --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"update": "npx npm-check-updates --format group --interactive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcobiedermann/advent-of-code.git"
},
"keywords": [
"advent-of-code",
"advent",
"algorithms",
"christmas",
"problem-solving",
"puzzle",
"solutions"
],
"author": "Marco Biedermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcobiedermann/advent-of-code/issues"
},
"homepage": "https://github.com/marcobiedermann/advent-of-code#readme",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"lint-staged": {
"**/*": "npm run format"
}
}