bakerface/ziploc

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "ziploc",
  "version": "1.7.2",
  "description": "An extensible nano-service framework",
  "main": "index.js",
  "author": "Christopher M. Baker",
  "license": "MIT",
  "homepage": "https://github.com/bakerface/ziploc",
  "keywords": [
    "extensible",
    "framework",
    "nano",
    "service"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bakerface/ziploc.git"
  },
  "bugs": {
    "url": "https://github.com/bakerface/ziploc/issues"
  },
  "scripts": {
    "pretest": "xo",
    "test": "istanbul cover node_modules/.bin/_mocha",
    "posttest": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
    "codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
  },
  "xo": {
    "space": true,
    "globals": [
      "describe",
      "it",
      "beforeEach",
      "afterEach"
    ],
    "rules": {
      "brace-style": [
        "error",
        "stroustrup"
      ],
      "xo/filename-case": [
        "off"
      ],
      "no-unused-vars": [
        "error",
        {
          "argsIgnorePattern": "^_"
        }
      ]
    }
  },
  "devDependencies": {
    "body-parser": "^1.15.1",
    "codeclimate-test-reporter": "^0.3.1",
    "express": "^4.13.4",
    "fakeredis": "^1.0.3",
    "istanbul": "^0.4.3",
    "mocha": "^2.4.5",
    "require-all": "^2.0.0",
    "supertest": "^1.2.0",
    "uuid": "^2.0.2",
    "xo": "^0.15.1"
  }
}