-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "node-express-req-id",
"version": "1.0.0",
"description": "Express middleware for adding unique request id using uuid / cuid",
"main": "./lib/index.js",
"scripts": {
"test": "nyc --reporter=lcov mocha",
"coverage": "nyc report --reporter=text",
"coverage-report": "nyc --reporter=html mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajeshkumaravel/express-req-id.git"
},
"keywords": [
"nodejs request id",
"middleware",
"request id",
"express",
"uuid",
"cuid",
"request",
"id",
"X-Request-Id"
],
"author": "RAJESH K",
"license": "MIT",
"bugs": {
"url": "https://github.com/rajeshkumaravel/express-req-id/issues"
},
"homepage": "https://github.com/rajeshkumaravel/express-req-id#readme",
"dependencies": {
"cuid": "^2.1.8",
"uuid": "^8.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"express": "^4.17.1",
"mocha": "^8.1.1",
"nyc": "^15.1.0"
}
}