-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 963 Bytes
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
{
"name": "table-layout-cli",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "4.0.1",
"description": "Format data in column or table layout on the command line",
"repository": "https://github.com/75lb/table-layout-cli",
"license": "MIT",
"type": "module",
"bin": {
"table-layout": "bin/cli.js"
},
"keywords": [
"wrap",
"terminal",
"data",
"columns",
"format",
"json",
"command line"
],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "test-runner test/cli.js",
"examples": "for FILE in example/*.json; do echo \"# $FILE\"; echo; cat \"$FILE\" | node bin/cli.js; done"
},
"dependencies": {
"@75lb/deep-merge": "^1.1.1",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"stream-read-all": "^4.0.0",
"table-layout": "^3.0.2",
"typical": "^7.1.1"
},
"devDependencies": {
"test-runner": "^0.10.1"
},
"files": [
"bin"
]
}