-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "alex-first-project-lvl1",
"version": "1.1.0",
"description": "Brain games. Five games for brain",
"bin": {
"brain-games": "dist/bin/brain-games.js",
"brain-even": "dist/bin/brain-even.js",
"brain-calc": "dist/bin/brain-calc.js",
"brain-gcd": "dist/bin/brain-gcd.js",
"brain-progression": "dist/bin/brain-progression.js",
"brain-prime": "dist/bin/brain-prime.js"
},
"dependencies": {
"@hexlet/pairs": "^1.0.10",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2"
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexeyRyabchikov/frontend-project-lvl1.git"
},
"keywords": [
"Brain games",
"Brain even",
"Brain calc",
"Brain gcd",
"Brain progression",
"Brain prime"
],
"author": "Alexey Ryabchikov",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexeyRyabchikov/frontend-project-lvl1/issues"
},
"homepage": "https://github.com/AlexeyRyabchikov/frontend-project-lvl1#readme"
}