-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.91 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@solothought/flowgger",
"version": "1.0.0",
"description": "Logging framework that saves 90% logs size and debugging time",
"main": "./dist/flowgger.cjs",
"type": "module",
"module": "./src/Flowgger.js",
"types": "./src/Flowgger.d.ts",
"exports": {
".": {
"import": {
"types": "./src/Flowgger.d.ts",
"default": "./src/Flowgger.js"
},
"require": {
"types": "./dist/flowgger.d.cts",
"default": "./dist/flowgger.cjs"
}
},
"./appenders": {
"import": {
"default": "./src/Appenders.js"
}
},
"./PatternLayout": {
"import": {
"types": "./src/PatternLayout.d.ts",
"default": "./src/PatternLayout.js"
}
},
"./Log4jsAdapter": {
"import": {
"types": "./src/Flowgger.d.ts",
"default": "./src/Log4jsAdapter.js"
}
},
"./LogRecord": {
"import": {
"types": "./src/Flowgger.d.ts",
"default": "./src/LogRecord.js"
}
}
},
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md",
"assets/flowgger_vs_log4js.png"
],
"keywords": [
"logging",
"log",
"flow",
"logger"
],
"repository": {
"type": "git",
"url": "https://github.com/solothought/flowgger"
},
"bugs": {
"url": "https://github.com/solothought/flowgger/issues",
"email": "githubissues@proton.me"
},
"publishConfig": {
"access": "public"
},
"author": "Amit Gupta (https://solothought.com)",
"homepage": "https://github.com/solothought/flowgger",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/solothought"
}
],
"scripts": {
"test": "c8 --reporter=lcov --reporter=text jasmine tests/*_test.js tests/**/*_test.js"
},
"devDependencies": {
"c8": "^10.1.3",
"log4js": "^6.9.1"
},
"dependencies": {
"@solothought/text2obj": "^1.0.3"
}
}