truongld/yodajs

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "yodajs",
  "version": "0.7.2",
  "description": "Fast and frictionless MVC web framework for Node.js. Included Passport, Mongoose",
  "keywords": [
    "express",
    "framework",
    "web",
    "mvc",
    "mongoose",
    "passport"
  ],
  "contributors": [
    {
      "name": "Truong LD",
      "email": "mr.truongld@gmail.com"
    },
    {
      "name": "Viadeo Team"
    },
    {
      "name": "Jared Hanson",
      "email": "jaredhanson@gmail.com",
      "url": "http://www.jaredhanson.net/"
    }
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/truongld/yodajs.git"
  },
  "bugs": {
    "url": "http://github.com/truongld/yodajs/issues"
  },
  "license": "MIT",
  "bin": {
    "yoda": "./bin/yoda.js"
  },
  "main": "./lib",
  "dependencies": {
    "actionrouter": "0.1.0",
    "bootable": "0.2.4",
    "bootable-environment": "0.2.0",
    "co-prompt": "1.0.0",
    "commander": "2.7.1",
    "debug": "2.1.3",
    "depd": "^1.0.1",
    "express": "~4.13.3",
    "mkdirp": "0.3.5",
    "parent-require": "1.0.0",
    "pkginfo": "0.3.0",
    "scripts": "0.1.0",
    "syntax-error": "1.1.2",
    "utils-flatten": "1.0.0"
  },
  "devDependencies": {
    "chai": "2.x.x",
    "chai-connect-middleware": "0.3.x",
    "codeclimate-test-reporter": "0.0.4",
    "istanbul": "0.3.x",
    "jshint": "2.7.x",
    "mocha": "2.x.x",
    "promise": "7.x.x"
  },
  "engines": {
    "node": ">= 0.12.0"
  },
  "scripts": {
    "test": "mocha --require test/bootstrap/node 'test/**/*.test.js'",
    "lint": "jshint lib/",
    "lint-tests": "jshint test/",
    "coverage": "DEBUG= istanbul cover --dir ./reports/coverage _mocha -- --require ./test/bootstrap/node 'test/**/*.test.js'",
    "view-coverage": "open coverage/lcov-report/index.html",
    "send-coverage": "cat ./reports/coverage/lcov.info | ./node_modules/.bin/codeclimate",
    "clean": "rm -rf build; rm -rf reports; rm -rf node_modules"
  }
}