-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "elb-braingames_hexproj",
"version": "1.11.0",
"description": "Hexlet first project",
"main": "dist/index.js",
"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-arithprog": "dist/bin/brain-arithprog.js",
"brain-prime": "dist/bin/brain-prime.js"
},
"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/BabayevEldar/project-lvl1-s486.git"
},
"keywords": [
"brain-games",
"hexlet"
],
"author": "Babaev Eldar",
"license": "MIT",
"bugs": {
"url": "https://github.com/BabayevEldar/project-lvl1-s486/issues"
},
"homepage": "https://github.com/BabayevEldar/project-lvl1-s486#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2"
},
"dependencies": {
"readline-sync": "^1.4.9"
}
}