-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "lumelog",
"version": "1.0.0",
"description": "Human-first Node.js logger optimized for terminal readability",
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/codehassoul/lumelog.git"
},
"homepage": "https://github.com/codehassoul/lumelog#readme",
"bugs": {
"url": "https://github.com/codehassoul/lumelog/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
}
},
"files": [
"src",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node --test test/alignment.test.js test/colors.test.js test/edge.test.js test/format.test.js test/index.test.js test/scope.test.js test/streams.test.js test/time.test.js",
"prepack": "npm test"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0"
},
"keywords": [
"log",
"logger",
"logging",
"console",
"cli",
"terminal",
"nodejs",
"developer-tools"
],
"license": "MIT"
}