-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "logmark",
"version": "1.0.10",
"description": "Simple, lightweight and dependency free nodejs logger with human-readable logs",
"main": "pkg/index.js",
"types": "pkg/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard src/*/**.js --fix",
"lint-pkg": "standard pkg/index.js --fix",
"build-esm": "esbuild src/core/Logmark.js --outfile=pkg/index.js --bundle --platform=node --format=esm --color=true && lint-pkg",
"build-cjs": "esbuild src/core/Logmark.js --outfile=pkg/index.cjs.js --bundle --platform=node --format=cjs --color=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stasbubnoff/logmark.git"
},
"author": {
"name": "Stanislav Bubnov",
"email": "[email protected]",
"url": "https://github.com/stasbubnoff"
},
"contributors": [
{"name":"Ben Dundon","url":"https://github.com/BenDundon"},
{"name":"Nikita Galadiy","url":"https://github.com/neki-dev"}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stasbubnoff/logmark/issues",
"email": "[email protected]"
},
"keywords": [
"terminal",
"console",
"print",
"log",
"logs",
"fast",
"logger",
"logging",
"nodejs",
"color",
"acsii",
"winston",
"pino",
"bunyan",
"loglevel",
"sysadmin",
"monitoring",
"healthcheck"
],
"homepage": "https://github.com/stasbubnoff/logmark#readme",
"devDependencies": {
"esbuild": "^0.15.13",
"standard": "^17.0.0"
},
"type": "module"
}