-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "@villedemontreal/correlation-id",
"version": "5.3.10",
"description": "Express middleware to set a correlation in Express. The correlation id will be consistent across async calls within the handling of a request.",
"main": "dist/src/index.js",
"typings": "dist/src",
"files": [
"src",
"dist"
],
"scripts": {
"start": "node run test",
"test": "mocha --require ts-node/register src/**/*.test.ts",
"compile": "node run compile",
"lint": "node run lint",
"lint-fix": "node run lint-fix",
"prettier": "echo 'not yet implemented'",
"prettier-fix": "echo 'not yet implemented'",
"watch": "echo 'not yet implemented'"
},
"keywords": [
"montreal",
"cid",
"correlation ID",
"request",
"debug"
],
"author": "Ville de Montréal",
"license": "MIT",
"dependencies": {
"@types/app-root-path": "1.2.8",
"@types/cls-hooked": "4.3.8",
"@types/lodash": "4.17.7",
"@types/uuid": "10.0.0",
"@villedemontreal/logger": "6.6.3",
"app-root-path": "3.1.0",
"cls-hooked": "4.2.2",
"http-header-fields-typed": "1.3.0",
"lodash": "4.17.21",
"semver": "7.6.3",
"uuid": "10.0.0"
},
"devDependencies": {
"@types/chai": "4.3.19",
"@types/express": "4.17.21",
"@types/fs-extra": "11.0.4",
"@types/mocha": "10.0.8",
"@types/semver": "7.5.8",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@villedemontreal/scripting": "2.1.9",
"chai": "4.5.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"express": "4.21.0",
"fs-extra": "11.2.0",
"mocha": "10.7.3",
"mocha-jenkins-reporter": "0.4.8",
"supertest": "7.0.0",
"ts-node": "^10.9.2",
"typescript": "5.6.2"
}
}