-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 KB
/
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
38
{
"name": "frontend-project-lvl1",
"version": "1.0.0",
"description": "First project by profession Frontend JS on Hexlet.io - brain-games. Brain-games is a simple set of terminal mini-games.",
"keywords": ["hexlet", "brain-games", "frontend-project"],
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julijaschwarz/frontend-project-lvl1.git"
},
"author": "Julija Schwarz",
"license": "MIT",
"bugs": {
"url": "https://github.com/julijaschwarz/frontend-project-lvl1/issues",
"email": "fr.schwarz@yandex.ru"
},
"homepage": "https://github.com/julijaschwarz/frontend-project-lvl1#readme",
"type": "module",
"bin": {
"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"
},
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"lodash": "^4.17.21"
}
}