forked from cesalberca/katas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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": "katas",
"version": "1.0.0",
"description": "Katas",
"repository": "https://github.com/cesalberca/katas",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage && make-coverage-badge --output-path coverage-badge.svg",
"format": "prettier --write .",
"toc": "doctoc README.md --github --title \"**Table of Contents**\""
},
"keywords": [],
"author": "César Alberca <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-private-methods": "7.16.11",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@types/jest": "27.4.0",
"babel-jest": "27.5.1",
"doctoc": "2.1.0",
"husky": "4.3.0",
"jest": "27.5.1",
"lint-staged": "12.3.3",
"make-coverage-badge": "1.2.0",
"prettier": "2.5.1",
"ts-mockito": "2.6.1",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
}
}