-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 994 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
30
31
32
33
34
35
36
37
{
"name": "brain-games",
"version": "1.0.0",
"description": "A pack of Brain Games.",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/VilerIT/brain-games.git"
},
"bin": {
"brain-games": "bin/brain-games.js",
"brain-even": "bin/brain-even.js",
"brain-calc": "bin/brain-calc.js",
"brain-gcd": "bin/brain-gcd.js",
"brain-progression": "bin/brain-progression.js",
"brain-prime": "bin/brain-prime.js"
},
"author": "VilerIT",
"license": "MIT",
"bugs": {
"url": "https://github.com/VilerIT/brain-games/issues"
},
"homepage": "https://github.com/VilerIT/brain-games#readme",
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@jest/globals": "^26.6.2",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jest-cli": "^26.6.3"
}
}