-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "@moonstar-x/logger",
"version": "1.0.1",
"description": "A logger with some colors and timestamps depending on the logging level.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"engines": {
"node": ">=12"
},
"keywords": [
"moonstar-x",
"log",
"logging",
"chalk",
"colors",
"colored logging",
"color logs"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .tsx,.ts,.js",
"lint:fix": "eslint . --ext .tsx,.ts,.js --fix",
"build": "tsc --build"
},
"author": "moonstar-x",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/moonstar-x/node-logger.git"
},
"bugs": {
"url": "https://github.com/moonstar-x/node-logger/issues"
},
"homepage": "https://github.com/moonstar-x/node-logger#readme",
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@moonstar-x/eslint-config": "^1.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}