-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
79 lines (79 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cls-rtracer",
"version": "2.6.3",
"description": "Express & Koa middlewares and Fastify & Hapi plugins for CLS-based request id generation, batteries included",
"author": {
"name": "Andrey Pechkurov",
"url": "https://github.com/puzpuzpuz"
},
"contributors": [
{
"name": "Andrey Goncharov",
"url": "https://github.com/aigoncharov"
},
{
"name": "Denis Fatkhudinov",
"url": "https://github.com/batrudinych"
},
{
"name": "Simen Bekkhus",
"url": "https://github.com/SimenB"
},
{
"name": "Gabriel Pinheiro",
"url": "https://github.com/gabriel-pinheiro"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/puzpuzpuz/cls-rtracer/issues"
},
"homepage": "https://github.com/puzpuzpuz/cls-rtracer",
"main": "index.js",
"engines": {
"node": ">=12.17.0 <13.0.0 || >=13.14.0 <14.0.0 || >=14.0.0"
},
"files": [
"src/*",
"index.js",
"index.d.ts"
],
"scripts": {
"test-ci": "npm run check-type && npm run lint && npm run test",
"cover": "jest --coverage --coverageReporters=lcov",
"test": "jest",
"lint": "standard",
"check-type": "tsc index.d.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:puzpuzpuz/cls-rtracer.git"
},
"keywords": [
"express",
"fastify",
"koa",
"hapi",
"cls",
"request",
"request id",
"logging"
],
"dependencies": {
"uuid": "^9.0.1"
},
"devDependencies": {
"@hapi/hapi": "^21.3.7",
"@types/node": "^16.18.91",
"express": "^4.19.0",
"fastify": "^4.26.2",
"fastifyv2": "npm:fastify@^2.15.3",
"jest": "^29.7.0",
"koa": "^2.15.1",
"koav1": "npm:koa@^1.7.0",
"standard": "^17.1.0",
"supertest": "^6.3.4",
"typescript": "^5.4.2",
"winston": "^3.12.0"
}
}