-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "logging-pretty",
"version": "2.0.0",
"description": "Logging your message with pretty color with node.js",
"scripts": {
"test": "node test/test.js",
"build": "tsup",
"publish:package": "npm run build && npm publish"
},
"homepage": "https://github.com/damartripamungkas/logging-pretty",
"repository": {
"type": "git",
"url": "https://github.com/damartripamungkas/logging-pretty.git"
},
"keywords": [
"console.log",
"logger",
"chalk",
"logging-color",
"node-console",
"logging-pretty",
"logger-pretty",
"log-pretty",
"log-beautiful",
"backend",
"frontend",
"nodejs"
],
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"author": "damartripamungkas",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"dayjs": "^1.11.7"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^9.7.0",
"tsup": "^8.1.0"
}
}