-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.91 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
71
72
{
"name": "@jitesoft/yolog-json-plugin",
"description": "Plugin for @jitesoft/yolog to output logs as JSON.",
"license": "MIT",
"esnext": {
"main": "src/node/index.js",
"browser": "src/web/index.js"
},
"main": "dist/node.js",
"author": {
"name": "Johannes Tegnér",
"email": "johannes@jitesoft.com",
"url": "https://jitesoft.com"
},
"readmeFilename": "README.md",
"keywords": [
"logging",
"yolog",
"plugin",
"jitesoft",
"async",
"browser",
"node-yolog",
"node",
"json"
],
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
]
},
"bugs": {
"url": "https://github.com/jitesoft/yolog-json-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jitesoft/yolog-json-plugin"
},
"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/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",
"jest-environment-jsdom": "^29.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "jest tests/",
"lint": "eslint",
"build:prod": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack"
},
"dependencies": {
"@jitesoft/sprintf": "^2.1.7"
}
}