express-mw-correlation-id
Version:
express middleware that correlates HTTP requests between a client and server
48 lines (47 loc) • 1.31 kB
JSON
{
"name": "express-mw-correlation-id",
"version": "5.2.0",
"description": "express middleware that correlates HTTP requests between a client and server",
"main": "index.js",
"files": ["LICENSE", "README.md", "index.js"],
"scripts": {
"coverage": "open coverage/lcov-report/index.html",
"coverage:check": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"test": "standard --fix && istanbul cover _mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaquimserafim/express-mw-correlation-id.git"
},
"keywords": [
"express",
"middleware",
"request-id",
"correlation-id",
"request",
"transaction",
"id"
],
"author": "@JoaquimSerafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/express-mw-correlation-id/issues"
},
"homepage": "https://github.com/joaquimserafim/express-mw-correlation-id#readme",
"devDependencies": {
"chai": "^3.5.0",
"express": "^4.14.0",
"istanbul": "0.4.5",
"mocha": "^5.2.0",
"pre-commit": "^1.1.3",
"standard": "^8.6.0",
"supertest": "^3.3.0"
},
"dependencies": {
"uuid.v4": "^1.0.0"
},
"engines": {
"node": ">=6.1"
},
"pre-commit": ["test", "coverage:check"]
}