package.json
{
"name": "@hippiek1ller/brain-games",
"version": "1.0.0",
"description": "Console math quiz mini games",
"keywords": [
"brain",
"game",
"math quiz",
"console"
],
"main": "index.js",
"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"
},
"bin": {
"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"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Hippiek1ller/frontend-project-lvl1.git"
},
"author": "Alexander",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hippiek1ller/frontend-project-lvl1/issues"
},
"homepage": "https://github.com/Hippiek1ller/frontend-project-lvl1#readme",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2"
},
"dependencies": {
"hexlet-pairs": "^1.0.8",
"readline-sync": "^1.4.10"
}
}