-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 904 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
{
"name": "gfmt",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "2.0.0",
"description": "A use-anywhere, github-flavoured-markdown table generator. Useful in markdown generators or for presenting table data in the terminal.",
"repository": "https://github.com/75lb/gfmt.git",
"license": "MIT",
"main": "index.mjs",
"bin": {
"gfmt": "bin/cli.mjs"
},
"keywords": [
"github",
"gfm",
"markdown",
"table",
"terminal",
"ascii"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"command-line-args": "^5.2.0",
"stream-read-all": "^3.0.1",
"table-layout": "~3.0.0"
},
"scripts": {
"test": "test-runner test/*.mjs",
"docs": "jsdoc2md -c jsdoc.conf -t README.hbs index.mjs > README.md"
},
"devDependencies": {
"jsdoc-to-markdown": "^7.0.1",
"test-runner": "~0.9.8"
},
"files": [
"index.mjs"
]
}