-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "javascript_katas",
"version": "2.0.1",
"type": "module",
"description": "A collection of JavaScript challenges using TDD",
"scripts": {
"clean": "rm -rf ./node_modules",
"format": "prettier --write ./src",
"lint": "eslint ./src --fix",
"prepare": "husky",
"test": "jest --coverage --verbose",
"test:ci": "jest -b --ci",
"test:watch": "jest -o --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dastasoft/javascript_katas.git"
},
"keywords": [
"javascript",
"katas",
"testing",
"jest"
],
"author": "dastasoft <dastasoft@protonmail.com> (https://dastasoft.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dastasoft/javascript_katas/issues"
},
"homepage": "https://github.com/dastasoft/javascript_katas#readme",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.12",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"prettier": "^3.3.3"
}
}