From f5a80410f939eb7c008eb6607c316f7df0019cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=A0krab=C3=A1nek?= Date: Mon, 23 Oct 2023 10:25:20 +0200 Subject: [PATCH] hangman fix package.json --- hangman/index.js | 1 + hangman/package.json | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/hangman/index.js b/hangman/index.js index f4c94b3..0a41c51 100644 --- a/hangman/index.js +++ b/hangman/index.js @@ -1,3 +1,4 @@ +//npm install const readlineSync = require("readline-sync"); //funkce pro vybrání náhodne slo pro hru diff --git a/hangman/package.json b/hangman/package.json index 6e09624..4bb946c 100644 --- a/hangman/package.json +++ b/hangman/package.json @@ -7,5 +7,8 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "author": "KM", - "license": "ISC" + "license": "ISC", + "dependencies": { + "readline-sync": "^1.4.10" + } }