Primer commit. Coodigo escrito en el añoo 2021

This commit is contained in:
2025-12-09 12:26:50 -05:00
commit e767ed7ec9
33 changed files with 15049 additions and 0 deletions

25
package.json Executable file
View File

@@ -0,0 +1,25 @@
{
"name": "terminal-wordclock",
"version": "1.0.0",
"description": "WordClock simple para el terminal, con test unitarios y jsdocs. El objetivo de este codigo es aprender a documentar y testear software en nodejs",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"run": "node index.js",
"run_eo": "node index.js eo",
"run_es": "node index.js es"
},
"keywords": [
"wordclock",
"terminal"
],
"author": "drk0027",
"license": "ISC",
"dependencies": {
"chai": "^4.3.4",
"chalk": "^4.1.1"
},
"devDependencies": {
"mocha": "^9.0.2"
}
}