{
  "name": "cqc",
  "version": "0.6.0",
  "description": "Code Quality Checker - Check your code quality by running one command.",
  "main": "src/CodeQualityChecker/index.js",
  "bin": {
    "cqc": "bin/cqc.js"
  },
  "scripts": {
    "lint": "eslint .",
    "test": "npm run lint && _mocha",
    "cover": "istanbul cover node_modules/mocha/bin/_mocha",
    "coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
  },
  "keywords": [
    "quality",
    "code quality",
    "complexity",
    "duplicate",
    "sloc"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xcatliu/cqc.git"
  },
  "author": "xcatliu <xcatliu@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/xcatliu/cqc/issues"
  },
  "homepage": "https://github.com/xcatliu/cqc#readme",
  "dependencies": {
    "babel-eslint": "^8.0.1",
    "commander": "^2.11.0",
    "eslint": "^4.7.1",
    "eslint-plugin-react": "^7.4.0",
    "eslint-plugin-vue": "^3.13.0",
    "globby": "^6.1.0",
    "jscpd": "^0.6.14",
    "lodash": "^4.17.4",
    "sloc": "^0.2.0",
    "vue-eslint-parser": "^2.0.1-beta.1",
    "winston": "^2.3.1"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "coveralls": "^3.0.0",
    "eslint-config-alloy": "^1.2.1",
    "istanbul": "^0.4.5",
    "mocha": "^3.5.3",
    "mocha-lcov-reporter": "^1.3.0",
    "sinon": "^4.0.0"
  }
}
