andreirk/project-lvl1-s280

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@andreirk/my_braingames",
  "version": "0.5.2",
  "description": "This project is created with learning purpose. This is the first step of Hexlet projects course.",
  "main": "",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "brain-games": "node dist/bin/brain-games.js",
    "brain-even": "node dist/bin/brain-even.js",
    "brain-calc": "node dist/bin/brain-calc.js",
    "brain-gcd": "node dist/bin/brain-gcd.js",
    "brain-balance": "node dist/bin/brain-balance.js",
    "babel-node": "babel-node",
    "build": "set NODE_ENV=production && babel src --out-dir dist --source-maps inline ",
    "prepublishOnly": "npm run build",
    "eslint": "eslint"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/andreirk/project-lvl1-s280.git"
  },
  "author": "Andrey Sokolov",
  "license": "ISC",
  "bin": {
    "brain-games": "dist/bin/brain-games.js",
    "brain-even": "dist/bin/brain-even.js",
    "brain-balance": "dist/bin/brain-balance.js"
  },
  "files": [
    "dist"
  ],
  "bugs": {
    "url": "https://github.com/andreirk/project-lvl1-s280/issues"
  },
  "homepage": "https://github.com/andreirk/project-lvl1-s280#readme",
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.3",
    "babel-eslint": "^8.2.3",
    "babel-preset-env": "^1.7.0",
    "babel-preset-stage-0": "^6.24.1",
    "eslint": "^4.19.1",
    "eslint-config-airbnb-base": "^12.1.0",
    "eslint-plugin-babel": "^5.1.0",
    "eslint-plugin-import": "^2.12.0"
  },
  "dependencies": {
    "readline-sync": "^1.4.9"
  }
}