CountJr/js_l1_brain_games-s12

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "brain-even",
  "author": "countjr",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/CountJr/js_l1_brain_games-s12/issues"
  },
  "homepage": "https://github.com/CountJr/js_l1_brain_games-s12#readme",
  "version": "0.1.12",
  "description": "Brain Games",
  "main": "src/index.js",
  "bin": {
    "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"
  },
  "babel": {
    "presets": [
      "latest",
      "stage-0"
    ],
    "plugins": [
      "transform-runtime"
    ]
  },
  "dependencies": {
    "babel-cli": "^6.18.0",
    "babel-runtime": "^6.11.6",
    "readline-sync": "^1.4.5"
  },
  "devDependencies": {
    "babel-cli": "^6.16.0",
    "babel-core": "^6.17.0",
    "babel-eslint": "^7.0.0",
    "babel-jest": "^18.0.0",
    "babel-plugin-syntax-flow": "^6.18.0",
    "babel-plugin-transform-flow-strip-types": "^6.21.0",
    "babel-plugin-transform-runtime": "^6.15.0",
    "babel-polyfill": "^6.20.0",
    "babel-preset-env": "^1.1.4",
    "babel-preset-latest": "^6.16.0",
    "babel-preset-stage-0": "^6.16.0",
    "babel-register": "^6.16.3",
    "cli-agent": "CountJr/cli-agent",
    "codeclimate-test-reporter": "^0.4.0",
    "eslint": "^3.12.2",
    "eslint-config-airbnb": "^13.0.0",
    "eslint-plugin-flowtype": "^2.29.2",
    "eslint-plugin-import": "^2.2.0",
    "flow-bin": "^0.37",
    "flow-typed": "^2.0.0",
    "jest": "^18.1.0"
  },
  "scripts": {
    "test": "jest",
    "babel-node": "babel-node",
    "flow": "flow",
    "flow-typed": "flow-typed",
    "eslint": "eslint",
    "build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
    "prepublish": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CountJr/js_l1_brain_games-s12.git"
  },
  "jest": {
    "testRegex": "(/__tests__/.*|(\\.|/)(est|spec))\\.jsx?$",
    "testEnvironment": "node",
    "collectCoverage": "true",
    "coverageDirectory": "tmp",
    "coverageReporters": ["lcov"]
  }
}