-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.16 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.16 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
81
{
"name": "awesome-logging",
"version": "2.0.3",
"description": "Advanced logging messages, interactive prompts, loading animations and more in TypeScript",
"main": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js"
}
},
"type": "module",
"files": [
"lib"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm eslint ./src/**",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"prebuild": "pnpm rimraf lib",
"build": "tsc -p .",
"test-script": "node --loader ts-node/esm ./src/test.ts"
},
"license": "MIT",
"private": false,
"dependencies": {
"chalk": "^5.6.2",
"restore-cursor": "^5.1.0",
"slice-ansi": "^7.1.2",
"strip-ansi": "^7.1.2"
},
"devDependencies": {
"@awdware/eslint-config-base": "^2.1.1",
"@awdware/eslint-config-nodejs": "^2.0.0",
"@awdware/prettier-config": "^1.0.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"legally": "^3.5.10",
"node-terminal-simulator": "2.0.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"prettier": "@awdware/prettier-config",
"keywords": [
"log",
"logging",
"logger",
"awesome",
"spinner",
"progress",
"interactive",
"enquirer",
"inquirer",
"typescript",
"multi",
"multiline",
"advanced"
],
"author": {
"name": "Janik Schumacher (LoaderB0T)",
"url": "https://awdware.de"
},
"homepage": "https://github.com/LoaderB0T/awesome-logging",
"bugs": {
"url": "https://github.com/LoaderB0T/awesome-logging/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LoaderB0T/awesome-logging.git"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}