-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 999 Bytes
/
package.json
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
{
"name": "mind-games",
"version": "1.0.0",
"type": "module",
"description": "'Mind-games' is a set of five console games, built on the principle of popular mobile applications for brain improvement. Each game gives you several questions, on which you have to give correct answers. After three right answers a game is considered to be completed. Wrong answers end a game and offer a replay.",
"main": "index.js",
"bin": {
"mind-games": "bin/mind-games.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EugeneDiskeyn/Mind-Games.git"
},
"author": "EugeneDiskeyn",
"license": "ISC",
"bugs": {
"url": "https://github.com/EugeneDiskeyn/Mind-Games/issues"
},
"homepage": "https://github.com/EugeneDiskeyn/Mind-Games#readme",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "3.2.5"
},
"dependencies": {
"readline-sync": "^1.4.10"
}
}