forked from mathieueveillard/js-kata-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1015 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
40
41
{
"name": "js-kata-starter",
"version": "1.0.0",
"description": "Starter project for kata (Node, TypeScript, Jest)",
"main": "index.js",
"scripts": {
"test": "jest --watch --config --coverage",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"prettier": {
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieueveillard/js-kata-starter.git"
},
"keywords": [
"starter",
"project",
"kata",
"node",
"typescript",
"jest"
],
"author": "Mathieu Eveillard",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieueveillard/js-kata-starter/issues"
},
"homepage": "https://github.com/mathieueveillard/js-kata-starter#readme"
}