emvc/emvc-router

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "emvc-router",
  "version": "0.2.0",
  "description": "RESTful MVC router that dispatches to a controller and action",
  "keywords": [
    "emvc",
    "locomotive",
    "express",
    "connect",
    "router",
    "mvc",
    "model2"
  ],
  "author": {
    "name": "Nicholas Penree",
    "email": "nick@penree.com",
    "url": "http://www.penree.com/"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/emvc/emvc-router.git"
  },
  "bugs": {
    "url": "http://github.com/emvc/emvc-router/issues"
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "http://www.opensource.org/licenses/MIT"
    }
  ],
  "main": "./lib",
  "dependencies": {
    "methods": "^1.1.2",
    "i": "^0.3.5",
    "utils-flatten": "^1.0.0"
  },
  "devDependencies": {
    "chai": "^3.5.0",
    "coveralls": "^2.11.9",
    "istanbul": "^0.4.3",
    "mocha": "^2.5.3"
  },
  "engines": {
    "node": ">= 0.4.0"
  },
  "scripts": {
    "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js",
    "lint": "./node_modules/.bin/jshint lib/*.js",
    "lint-tests": "./node_modules/.bin/jshint test/*.test.js",
    "coverage": "DEBUG= ./node_modules/.bin/istanbul cover --dir ./reports/coverage _mocha -- --require ./test/bootstrap/node test/*.test.js test/**/*.test.js",
    "view-coverage": "open ./reports/coverage/lcov-report/index.html",
    "send-coverage": "cat ./reports/coverage/lcov.info | ./node_modules/.bin/coveralls",
    "clean": "rm -rf build; rm -rf reports"
  }
}