forked from cesalberca/katas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "katas",
"version": "1.0.0",
"description": "Katas",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage && make-coverage-badge --output-path coverage-badge.svg",
"toc": "doctoc README.md --github --title \"**Table of Contents**\""
},
"keywords": [],
"author": "César Alberca <cesalberca@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-private-methods": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-typescript": "7.10.1",
"@types/jest": "25.2.3",
"babel-jest": "26.0.1",
"doctoc": "1.4.0",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.7",
"make-coverage-badge": "1.2.0",
"prettier": "2.0.5",
"typescript": "3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
}
}