ksmithut/express-wait

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "express-wait",
  "version": "1.0.0",
  "description": "An initialization step/middleware to let you start accepting requests immediately, but wait until some other asynchronous task have completed, such as database connections.",
  "main": "index.js",
  "scripts": {
    "lint": "eslint .",
    "check-cov": "istanbul check-coverage --statements 90 --functions 90 --branches 85 --lines 90",
    "test": "istanbul cover _mocha",
    "posttest": "npm run check-cov; npm run lint;",
    "codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter"
  },
  "files": [
    "index.js",
    "lib"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ksmithut/express-wait.git"
  },
  "keywords": [
    "express",
    "async"
  ],
  "author": "ksmithut",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ksmithut/express-wait/issues"
  },
  "homepage": "https://github.com/ksmithut/express-wait#readme",
  "dependencies": {
    "bluebird": "^3.3.5"
  },
  "devDependencies": {
    "chai": "^3.5.0",
    "chai-as-promised": "^5.3.0",
    "chai-spies": "^0.7.1",
    "codeclimate-test-reporter": "^0.3.1",
    "eslint": "^2.8.0",
    "eslint-config-ksmithut": "^2.1.1",
    "express": "^4.13.4",
    "istanbul": "^0.4.3",
    "mocha": "^2.4.5",
    "mocha-lcov-reporter": "^1.2.0",
    "supertest": "^1.2.0",
    "supertest-as-promised": "^3.1.0"
  }
}