-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.96 KB
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
65
66
67
68
69
70
71
72
73
74
{
"name": "bunyan-adaptor",
"version": "7.0.0",
"description": "Maps the major Bunyan/Pino logging methods to custom methods",
"homepage": "http://github.com/voxpelli/node-bunyan-adaptor",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-bunyan-adaptor"
},
"author": "Pelle Wessman <[email protected]> (http://kodfabrik.se/)",
"license": "0BSD",
"keywords": [
"bunyan",
"logging",
"pino",
"adapter",
"console.log",
"mocking"
],
"engines": {
"node": "^22.13.0 || >=24.0.0",
"typescript": ">=5.9"
},
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"files": [
"index.d.ts",
"reference-types.d.ts"
],
"scripts": {
"check": "run-s check:*",
"check:installed-check": "installed-check",
"check:knip": "knip",
"check:lint": "eslint",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'",
"husky-disable": "git config --unset core.hooksPath",
"husky-enable": "husky",
"test": "run-s check test:*",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.cjs'",
"test-ci": "run-s test:*"
},
"devDependencies": {
"@scoop/bunyan": "2.0.2",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.17",
"@types/sinon": "^17.0.4",
"@types/sinon-chai": "^3.2.12",
"@voxpelli/eslint-config": "^25.0.0",
"@voxpelli/tsconfig": "^16.2.1",
"c8": "^11.0.0",
"chai": "^4.5.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"installed-check": "^10.0.1",
"knip": "^6.5.0",
"mocha": "^11.7.5",
"npm-run-all2": "^8.0.4",
"pino": "^10.3.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"type-coverage": "^2.29.7",
"typescript": "~6.0.2",
"validate-conventional-commit": "^1.0.4"
}
}