-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.06 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": "correlation-id",
"version": "5.2.0",
"description": "Correlation id for node.js",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"lint": "prettier --check . && eslint .",
"fmt": "prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/toboid/correlation-id.git"
},
"keywords": [
"logging",
"correlation",
"debug"
],
"author": "toboid",
"license": "MIT",
"bugs": {
"url": "https://github.com/toboid/correlation-id/issues"
},
"homepage": "https://github.com/toboid/correlation-id#readme",
"dependencies": {},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.1",
"prettier": "^2.8.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}