-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "cls-proxify",
"version": "2.0.0",
"description": "Logging on steroids with CLS and Proxy. Integrated with express, koa, fastify.",
"main": "index.js",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/cls-hooked": "^4.2.1",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.6",
"@types/koa": "^2.0.48",
"@types/supertest": "^2.0.7",
"babel-jest": "^27.5.1",
"cls-hooked": "^4.2.2",
"coveralls": "^3.0.3",
"doctoc": "^1.3.1",
"express": "^4.16.4",
"fastify": "^3.27.1",
"husky": "^1.3.1",
"jest": "^27.5.1",
"koa": "^2.7.0",
"lint-staged": "^12.3.3",
"prettier": "^1.16.4",
"shx": "^0.3.2",
"supertest": "^3.4.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3"
},
"peerDependencies": {
"cls-hooked": "^4.2.2"
},
"scripts": {
"test": "npx jest",
"compile": "npx tsc -p ./tsconfig.prod.json",
"lint": "npx tsc -p ./tsconfig.json --noEmit && npx tslint -c ./tslint.json -p ./tsconfig.json",
"prepack": "npm run compile",
"coverage-report": "npx shx cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aigoncharov/cls-proxify.git"
},
"author": "Andrey Goncharov ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/aigoncharov/cls-proxify/issues"
},
"homepage": "https://github.com/aigoncharov/cls-proxify#readme",
"keywords": [
"cls",
"proxy",
"tracing",
"trace id",
"cls replace",
"logging",
"log"
]
}