This repository was archived by the owner on Nov 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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
{
"name": "@vtfk/logger",
"version": "6.4.2",
"description": "A logger for console and Papertrail / Betterstack",
"main": "src/index.js",
"scripts": {
"test": "standard && jest --verbose && npm audit",
"test:watch": "jest --watch",
"lint": "standard ./src/**/*.js",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i"
},
"files": [
"src"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/node-shared-logger.git"
},
"bugs": "https://github.com/vtfk/node-shared-logger/issues",
"homepage": "https://github.com/vtfk/node-shared-logger#readme",
"author": "Ingar Helgesen (https://github.com/sherex)",
"contributors": [
{
"name": "Rune Moskvil Lyngås",
"email": "rune.moskvil.lyngas@vestfoldfylke.no",
"url": "https://github.com/runely"
}
],
"license": "MIT",
"dependencies": {
"@logtail/node": "^0.5.6",
"axios": "^1.12.2",
"deepmerge": "^4.2.2",
"pkg-dir": "^5.0.0"
},
"devDependencies": {
"jest": "^30.2.0",
"jest-extended": "^6.0.0",
"standard": "^17.1.2"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
],
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
},
"standard": {
"env": [
"jest"
]
}
}