-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "brain_games_har1ey",
"version": "1.1.0",
"description": "Hexlet - Brain Games",
"main": "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-balance": "dist/bin/brain-balance.js",
"brain-progression": "dist/bin/brain-progression.js",
"brain-prime": "dist/bin/brain-prime.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel-node": "babel-node",
"babel-version": "babel --version",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"eslint": "eslint",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/har1ey/project-lvl1-s104.git"
},
"author": "Nikolai Vakhrushev",
"license": "ISC",
"bugs": {
"url": "https://github.com/har1ey/project-lvl1-s104/issues"
},
"homepage": "https://github.com/har1ey/project-lvl1-s104#readme",
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"babel-eslint": "*"
},
"dependencies": {
"hexlet-pairs": "^1.0.3",
"readline-sync": "*"
}
}