-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "cls-tracer",
"version": "1.0.0",
"description": "Async local storage for Koa and custom jobs with out of the box support for tracing request/job id",
"readme": "README.md",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"check": "gts check ./src/*.ts ./src/**/*.ts ./test/*.ts",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix ./src/*.ts ./src/**/*.ts ./test/*.ts"
},
"url": "https://github.com/devu1997/cls-tracer",
"repository": {
"type": "git",
"url": "[email protected]:devu1997/cls-tracer.git"
},
"engines": {
"node": ">=12.17.0 <13.0.0 || >=13.14.0 <14.0.0 || >=14.0.0"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"koa",
"cls",
"request",
"request id",
"logging",
"async local storage"
],
"dependencies": {
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/koa": "^2.11.3",
"@types/node": "^14.10.3",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.9.0",
"jest": "^26.6.3",
"gts": "^2.0.2",
"koa": "^2.13.0",
"supertest": "^4.0.2",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}