-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.45 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
{
"name": "leekslazylogger",
"version": "6.0.0",
"description": "An easy-to-use and lightweight logger for Node.js with colours, timestamps, and files.",
"main": "dist/",
"types": "types/index.d.ts",
"files": [
"dist/",
"types/"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "del-cli ./dist && tsc",
"lint": "eslint src --ext .ts",
"lint-and-fix": "eslint src --ext .ts --fix",
"prepack": "npm run build",
"test": "npx ts-node test/test",
"watch": "npx tsc-watch --onSuccess \"npm run test\""
},
"author": {
"name": "eartharoid"
},
"license": "MIT",
"homepage": "leeks.js.org/logger",
"funding": "https://github.com/eartharoid/leekslazylogger?sponsor=1",
"repository": {
"type": "git",
"url": "git+https://github.com/eartharoid/leekslazylogger.git"
},
"bugs": {
"url": "https://github.com/eartharoid/leekslazylogger/issues"
},
"keywords": [
"color",
"colors",
"colour",
"colours",
"console",
"customisable",
"easy-to-use",
"file",
"files",
"leeks",
"leeks.js",
"log",
"logger",
"logs",
"styles",
"transports"
],
"dependencies": {
"@eartharoid/deep-merge": "^0.0.2",
"@eartharoid/dtf": "^2.0.1",
"leeks.js": "^0.3.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"del-cli": "^4.0.1",
"eslint": "^8.53.0",
"ts-node": "^10.7.0",
"tsc-watch": "^4.6.2",
"typescript": "^5.2.2"
}
}