-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "hmpo-logger",
"version": "8.0.1",
"description": "Consistent logging for hmpo apps",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit && npm run check-coverage && npm audit --production",
"lint": "eslint .",
"unit": "nyc --reporter=lcov --reporter=text-summary _mocha test/spec/ --recursive --require test/helper.js",
"check-coverage": "nyc check-coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/HMPO/hmpo-logger.git"
},
"author": "HMPO",
"license": "MIT",
"engines": {
"node": "20.x || 22.x"
},
"bugs": {
"url": "https://github.com/HMPO/hmpo-logger/issues"
},
"homepage": "https://github.com/HMPO/hmpo-logger#readme",
"dependencies": {
"chalk": "^4.1.2",
"debug": "^4.3.7",
"deep-clone-merge": "^1.5.5",
"glob": "^11.0.0",
"on-finished": "^2.4.1",
"on-headers": "^1.0.2",
"sort-object-keys": "^1.1.3"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"sinon-test": "^3.1.6",
"globals": "^15.9.0"
},
"nyc": {
"all": true,
"exclude": [
"coverage/**",
"index.js",
"test/**",
"eslint.config.js"
],
"lines": 100,
"branches": 100,
"functions": 100,
"statements": 100
}
}