-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 864 Bytes
/
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
{
"name": "log-groups",
"version": "3.0.0",
"description": "Log messages in colored boxes",
"repository": "https://github.com/moritzruth/log-groups.git",
"author": "Moritz Ruth <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"console",
"log",
"cli",
"box",
"boxes",
"output",
"grouping",
"fancy"
],
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/node": "12",
"eslint": "^7.20.0",
"eslint-config-awzzm-node": "^1.5.0",
"eslint-config-awzzm-ts": "^1.5.2",
"typescript": "^4.1.5"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-boxes": "^3.0.0",
"figures": "^3.2.0",
"string-width": "^4.2.0"
}
}