-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
39 lines (39 loc) · 953 Bytes
/
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
{
"name": "katas",
"private": true,
"version": "1.1.0",
"description": "Katas",
"repository": "https://github.com/cesalberca/katas",
"scripts": {
"test": "vitest --watch=false",
"test:watch": "vitest --watch=true",
"format": "prettier --write --ignore-path .gitignore .",
"toc": "doctoc README.md --github --title \"**Table of Contents**\"",
"prepare": "husky install"
},
"keywords": [],
"author": "César Alberca <cesalberca@gmail.com>",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-v8": "^0.34.4",
"doctoc": "2.2.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"make-coverage-badge": "1.2.0",
"prettier": "3.0.3",
"ts-mockito": "2.6.1",
"typescript": "5.2.2",
"vitest": "0.34.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
},
"volta": {
"node": "18.17.1"
}
}