This repository was archived by the owner on Jan 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 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
{
"name": "bhala",
"description": "A pretty (!), powerful and customizable logging library for Node.js.",
"version": "3.0.4",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engine": {
"node": ">=20"
},
"scripts": {
"build": "rm -Rf ./dist && rollup -c",
"build:watch": "tsc-watch",
"dev": "yarn build && concurrently \"yarn build:watch\" \"yarn dev:simulate\"",
"dev:simulate": "nodemon --delay 2.5 --watch ./dist --watch ./examples/demo.js ./examples/demo.js",
"prepare": "husky install",
"test": "yarn test:lint && yarn test:e2e",
"test:e2e": "yarn build && node ./examples/demo.js",
"test:lint": "biome check --write --files-ignore-unknown=true --no-errors-on-unmatched ."
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@ivangabriele/biome-config": "1.5.0",
"@ivangabriele/commitlint-config": "2.0.3",
"@ivangabriele/prettier-config": "5.0.1",
"@ivangabriele/semantic-release-config-base": "4.1.5",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-typescript": "8.5.0",
"@types/node": "16.18.126",
"colorette": "2.0.20",
"concurrently": "7.6.0",
"husky": "8.0.3",
"jest": "29.7.0",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"rollup": "3.29.5",
"rollup-plugin-node-builtins": "2.1.2",
"tsc-watch": "6.2.1",
"typescript": "4.9.5",
"wait-on": "6.0.1"
},
"packageManager": "yarn@4.9.1",
"prettier": "@ivangabriele/prettier-config",
"release": {
"extends": "@ivangabriele/semantic-release-config-base"
},
"author": {
"name": "Ivan Gabriele",
"email": "ivan.gabriele@protonmail.com",
"url": "https://www.ivangabriele.com"
},
"bugs": {
"url": "https://github.com/ivangabriele/bhala/issues"
},
"homepage": "https://github.com/ivangabriele/bhala#readme",
"keywords": [
"cli",
"color",
"coloured",
"console",
"log",
"logs",
"logger",
"logging",
"print",
"terminal"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivangabriele/bhala.git"
}
}