rofrischmann/bredon

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "private": true,
  "scripts": {
    "bootstrap": "lerna bootstrap",
    "build": "./scripts/build.sh",
    "clean": "lerna clean --yes && rimraf packages/*/es && rimraf packages/*/lib",
    "check": "npm run lint && npm run test:coverage && npm run flow",
    "format": "prettier --write \"**/**.js\"" ,
    "flow": "flow",
    "lint": "eslint packages/*/src/**/*.js",
    "release": "git pull --rebase && npm run build && lerna publish",
    "test": "cross-env BABEL_ENV=commonjs jest",
    "test:coverage": "cross-env BABEL_ENV=commonjs jest --coverage",
    "watch": "yarn test -- --watch",
    "setup": "yarn run clean && yarn run bootstrap && yarn run build"
  },
  "jest": {
    "rootDir": "packages",
    "testPathIgnorePatterns": [
      "/mocks/",
      "/lib/"
    ]
  },
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-core": "^6.22.1",
    "babel-eslint": "^7.1.1",
    "babel-jest": "^18.0.0",
    "babel-preset-es2015": "^6.22.0",
    "babel-preset-flow": "^6.23.0",
    "babel-preset-stage-0": "^6.24.1",
    "codeclimate-test-reporter": "^0.4.0",
    "cross-env": "^5.0.1",
    "eslint": "^3.14.1",
    "eslint-config-airbnb": "^14.0.0",
    "eslint-plugin-flowtype": "^2.30.0",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^3.0.2",
    "eslint-plugin-react": "^6.9.0",
    "flow-bin": "^0.38.0",
    "jest": "^19.0.0",
    "lerna": "^2.5.1",
    "prettier": "^1.7.4",
    "rimraf": "^2.6.1"
  }
}