-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 774 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 774 Bytes
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
{
"name": "adventjs-2023",
"version": "1.0.0",
"description": "Repositorio con los retos del AventJS 2023 por Midudev resueltos, con tests y explicacion de cada uno.",
"main": "index.js",
"scripts": {
"check": "npx @biomejs/biome check --apply ./src",
"lint": "npx @biomejs/biome lint ./src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chicho69-cesar/adventJS-2023.git"
},
"keywords": [
"AdventJS"
],
"author": "Cesar Villalobos Olmos",
"license": "ISC",
"bugs": {
"url": "https://github.com/chicho69-cesar/adventJS-2023/issues"
},
"homepage": "https://github.com/chicho69-cesar/adventJS-2023#readme",
"dependencies": {
"@types/jest": "29.5.11",
"jest": "29.7.0"
}
}