-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "@anthonyporthouse/advent-of-code-2022",
"version": "1.6.0",
"description": "",
"main": "index.js",
"type": "module",
"bin": "bin/advent-of-code.js",
"scripts": {
"format": "prettier --write .",
"test": "vitest --ui",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnthonyPorthouse/advent-of-code-2022.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnthonyPorthouse/advent-of-code-2022/issues"
},
"homepage": "https://github.com/AnthonyPorthouse/advent-of-code-2022#readme",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/memoizee": "^0.4.8",
"@types/node": "^18.11.10",
"@vitest/coverage-c8": "^0.25.3",
"@vitest/ui": "^0.25.3",
"husky": "^8.0.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3",
"vitest": "^0.25.3"
},
"dependencies": {
"commander": "^9.4.1",
"memoizee": "^0.4.15",
"ts-node": "^10.9.1"
}
}