forked from starak/node-console-stamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.94 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "console-stamp-color",
"main": "index.js",
"version": "3.0.3",
"scripts": {
"test": "tap --no-check-coverage -R spec test/*.js",
"test:watch": "nodemon --exec npm test",
"t:w": "npm run test:watch",
"preversion": "npm test",
"examples": "node examples/index || true"
},
"engines": {
"node": ">=10"
},
"author": {
"name": "EiskalterFreund",
"email": "engin@purenodes.net",
"url": "http://github.com/EiskalterFreund"
},
"contributors": [
{
"name": "EiskalterFreund",
"url": "http://github.com/EiskalterFreund"
},
{
"name": "Ståle Raknes",
"url": "http://github.com/starak"
},
{
"name": "Jotham Read",
"url": "https://github.com/jotham"
},
{
"name": "Christiaan Westerbeek",
"url": "https://github.com/devotis"
},
{
"name": "Leon Lucardie",
"url": "https://github.com/Gameleon12"
},
{
"name": "Steffan Donal",
"url": "https://github.com/SteffanDonal"
},
{
"name": "Sören Schwert",
"url": "https://github.com/sisou"
},
{
"name": "Fkscorpion",
"url": "https://github.com/Fkscorpion"
},
{
"name": "Alexis Tyler",
"url": "https://github.com/OmgImAlexis"
},
{
"name": "Jan Åge Lavik",
"url": "http://github.com/jalavik"
}
],
"description": "Patch NodeJS console methods in order to add timestamp information by pattern",
"keywords": [
"console",
"timestamp",
"log",
"jslog",
"debug",
"color"
],
"repository": {
"type": "git",
"url": "http://github.com/EiskalterFreund/console-stamp-color.git"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"dateformat": "^4.5.1"
},
"devDependencies": {
"moment": "^2.29.1",
"nodemon": "^2.0.12",
"tap": "^15.0.9"
}
}