package.json

Summary

Maintainability
Test Coverage
{
  "name": "hell",
  "preferGlobal": true,
  "version": "0.1.1",
  "description": "Experimental complexity analyzer for JavaScript projects",
  "main": "./lib/hell.js",
  "homepage": "https://github.com/vesln/hell",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "mocha test/*.test.js",
    "pretest": "jshint .",
    "coverage": "istanbul cover ./node_modules/.bin/_mocha test/*.test.js",
    "coveralls": "istanbul cover ./node_modules/.bin/_mocha test/*.test.js --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/vesln/hell.git"
  },
  "bin": {
    "hell": "./bin/hell"
  },
  "author": "Veselin Todorov <hi@vesln.com>",
  "license": "MIT",
  "devDependencies": {
    "mocha": "~1.13.0",
    "chai": "~1.8.1",
    "jshint": "~2.3.0",
    "coveralls": "~2.3.0",
    "nixt": "~0.0.4",
    "istanbul": "~0.1.44"
  },
  "dependencies": {
    "commander": "~2.0.0",
    "esprima": "~1.0.4",
    "estraverse": "~1.4.0",
    "refractory": "0.0.3",
    "fine": "0.0.2",
    "super": "~0.2.1"
  }
}