-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.01 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": "curso-fundamentos-js-retos",
"version": "1.0.0",
"description": "Retos del Curso de Fundamentos de JavaScript",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest --watch",
"start": "node index.js"
},
"keywords": [
"javascript",
"fundamentos",
"retos",
"platzi",
"variables",
"funciones",
"bucles",
"scope",
"template-literals",
"condicionales"
],
"author": {
"name": "Oscar Barajas @gndx"
},
"contributors": [
{
"name": "Oscar Barajas @gndx",
"email": "oscar@gndx.dev",
"url": "https://gndx.dev"
}
],
"repository": {
"type": "git",
"url": "https://github.com/gndx/curso-fundamentos-js-retos"
},
"bugs": {
"url": "https://github.com/gndx/curso-fundamentos-js-retos/issues"
},
"homepage": "https://github.com/gndx/curso-fundamentos-js-retos#readme",
"license": "MIT",
"devDependencies": {
"jsdom": "^28.1.0",
"vitest": "^4.0.18"
}
}