-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
43
44
45
46
47
{
"name": "coding-katas-typescript",
"version": "1.0.0",
"description": "Coding Katas written in TypeScript",
"type": "module",
"scripts": {
"lint": "eslint . --ext .ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"format": "yarn prettier . --write",
"format:check": "yarn prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliflores/coding-katas-typescript.git"
},
"keywords": [
"katas",
"typescript",
"hack-evening"
],
"author": "Eli Flores",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliflores/coding-katas-typescript/issues"
},
"homepage": "https://github.com/eliflores/coding-katas-typescript#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"packageManager": "yarn@3.6.1",
"engines": {
"node": "^18.0.0"
}
}