-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 739 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 739 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
{
"name": "json-to-table-cli",
"version": "1.0.0",
"description": "A CLI tool to convert JSON data into Markdown tables",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "json-to-table-cli"
},
"keywords": [
"json",
"markdown",
"cli",
"table"
],
"author": "Krishana Gautam",
"license": "MIT",
"dependencies": {
"axios": "^1.7.9",
"commander": "^13.1.0",
"csv-parse": "^5.6.0",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"yargs": "^17.7.2"
},
"bin": {
"json-to-table-cli": "bin/cli.js"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
}
}