-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.09 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
45
46
{
"name": "express-correlation-id",
"version": "3.0.1",
"description": "Express middleware to correlate requests across http calls",
"main": "index.js",
"files": [
"index.js",
"test",
"examples"
],
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"lint": "eslint index.js test/*.js examples/*.js",
"test": "node --test test/*",
"coverage": "node --test --experimental-test-coverage test/*",
"watch": "node --test --watch .",
"ci": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toboid/express-correlation-id.git"
},
"keywords": [
"express",
"logging",
"correlation",
"debug"
],
"author": "toboid",
"license": "MIT",
"bugs": {
"url": "https://github.com/toboid/express-correlation-id/issues"
},
"homepage": "https://github.com/toboid/express-correlation-id#readme",
"dependencies": {
"correlation-id": "^5.2.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-toboid": "^2.0.0",
"express": "^4.19.2",
"supertest": "^7.0.0"
}
}