-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.85 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
65
66
67
68
69
70
{
"name": "@jitesoft/yolog-file-plugin",
"description": "File logging plugin for @jitesoft/yolog.",
"license": "MIT",
"esnext": {
"main": "src/index.js"
},
"module": "src/index.js",
"main": "dist/index.js",
"author": {
"name": "Johannes Tegnér",
"email": "johannes@jitesoft.com",
"url": "https://jitesoft.com"
},
"readmeFilename": "README.md",
"keywords": [
"logging",
"yolog",
"plugin",
"jitesoft",
"async",
"node-yolog",
"node",
"file",
"file-logging"
],
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
]
},
"bugs": {
"url": "https://gitlab.com/jitesoft/open-source/javascript/yolog-plugins/file/issues"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/jitesoft/open-source/javascript/yolog-plugins/file"
},
"peerDependencies": {
"@jitesoft/yolog": ">=3.4"
},
"peerDependenciesMeta": {
"@jitesoft/yolog": {
"optional": false
}
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@jitesoft/babel-preset-main": "^5.4.0",
"@jitesoft/eslint-config": "^4.2.7",
"@jitesoft/yolog": "^3.4.6",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "eslint && jest",
"build:prod": "cross-env NODE_ENV=production webpack"
},
"dependencies": {
"@jitesoft/sprintf": "^2.1.7"
}
}