forked from puzpuzpuz/cls-rtracer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.48 KB
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
{
"name": "cls-rtracer",
"version": "1.3.0",
"description": "Express, Fastify and Koa middlewares, and Hapi plugin 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/keenondrums"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/puzpuzpuz/cls-rtracer/issues"
},
"homepage": "https://github.com/puzpuzpuz/cls-rtracer",
"main": "index.js",
"engines": {
"node": ">=8.0.0 - <10.0.0 || >=10.4.0"
},
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test-ci": "npm run lint && npm run test",
"cover": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git@github.com:puzpuzpuz/cls-rtracer.git"
},
"keywords": [
"express",
"fastify",
"koa",
"hapi",
"cls",
"request",
"request id",
"logging"
],
"dependencies": {
"uuid": "3.3.2"
},
"devDependencies": {
"@hapi/hapi": "^18.4.0",
"cls-hooked": "^4.2.2",
"coveralls": "^3.0.3",
"express": "^4.16.4",
"fastify": "^2.6.0",
"jest": "^24.7.1",
"koa": "^2.7.0",
"koav1": "npm:koa@^1.6.2",
"standard": "^12.0.1",
"supertest": "^3.4.2",
"winston": "^3.2.1"
},
"peerDependencies": {
"cls-hooked": "^4.2.2"
}
}