generated from mathieueveillard/js-kata-starter
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
42
43
44
45
{
"name": "trivia",
"version": "1.0.0",
"description": "Starter project for kata (Node, TypeScript, Jest)",
"main": "index.js",
"scripts": {
"test": "jest --watch --config --coverage jest.config.json",
"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",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"jest-extended": "^3.2.0",
"jest-golden-master": "^0.1.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"prettier": {
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieueveillard/trivia.git"
},
"keywords": [
"starter",
"project",
"kata",
"node",
"typescript",
"jest"
],
"author": "Mathieu Eveillard",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieueveillard/trivia/issues"
},
"homepage": "https://github.com/mathieueveillard/trivia#readme"
}