{
  "name": "complexity-report",
  "version": "2.0.0-alpha",
  "description": "Software complexity analysis for JavaScript projects",
  "homepage": "https://github.com/jared-stilwell/complexity-report",
  "bugs": "https://github.com/jared-stilwell/complexity-report/issues",
  "license": "MIT",
  "author": "Phil Booth <pmbooth@gmail.com>",
  "bin": {
    "cr": "./src/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jared-stilwell/complexity-report.git"
  },
  "maintainers": [
    {
      "name": "Jared Stilwell",
      "email": "jared.k.stilwell@gmail.com",
      "url": "https://github.com/jared-stilwell"
    }
  ],
  "keywords": [
    "complexity",
    "simplicity",
    "cyclomatic",
    "halstead",
    "maintainability",
    "static",
    "analysis",
    "metrics",
    "escomplex"
  ],
  "dependencies": {
    "async": "^1.4.2",
    "check-types": "^4.2.0",
    "commander": "^2.9.0",
    "escomplex": "2.0.0-alpha",
    "esprima": "^2.7.2"
  },
  "devDependencies": {
    "chai": "^3.4.0",
    "eslint": "^2.2.0",
    "mocha": "^2.3.3"
  },
  "scripts": {
    "lint": "eslint test src",
    "test": "mocha --ui tdd --reporter spec --colors"
  },
  "eslintConfig": {
    "extends": "eslint:recommended",
    "parser": "esprima",
    "env": {
      "node": true,
      "mocha": true
    }
  }
}
