-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "roosevelt-logger",
"description": "Intuitive, attractive logger for Node.js applications based on Winston.",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/roosevelt-logger/graphs/contributors"
}
],
"files": [
"defaults.json",
"logger.js"
],
"version": "0.2.3",
"homepage": "https://github.com/rooseveltframework/roosevelt-logger",
"license": "CC-BY-4.0",
"main": "logger.js",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@colors/colors": "1.6.0",
"node-emoji": "2.1.3",
"winston": "3.15.0"
},
"devDependencies": {
"c8": "10.1.2",
"codecov": "3.8.3",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-plugin-mocha": "10.4.1",
"mocha": "10.7.3",
"standard": "17.1.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018
},
"plugins": [
"mocha"
],
"rules": {
"mocha/no-exclusive-tests": "error"
}
},
"scripts": {
"codecov": "codecov",
"coverage": "c8 --reporter=text --reporter=lcov mocha --timeout 25000 test/unit",
"lint": "standard && eslint ./test",
"test": "cross-env SILENT_MODE=true mocha --recursive --timeout 10000 test/unit",
"test-debug": "mocha --inspect-brk --timeout 10000 test/unit"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/roosevelt-logger.git"
},
"keywords": [],
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}