-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.05 KB
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
{
"type": "module",
"name": "markdown-cli-tool",
"version": "1.0.4",
"description": "CLI tool for scanning and extracting tables from Markdown files",
"main": "index.js",
"bin": {
"markdown-cli": "bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"dev": "nodemon bin/cli.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Johan-Hagman/Markdown-CLI.git"
},
"keywords": [
"cli",
"markdown",
"tables",
"extract",
"automation"
],
"author": "Johan Hagman",
"license": "MIT",
"bugs": {
"url": "https://github.com/Johan-Hagman/Markdown-CLI"
},
"homepage": "https://github.com/Johan-Hagman/Markdown-CLI#readme",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"fs-extra": "^11.3.0",
"ora": "^8.2.0"
},
"devDependencies": {
"eslint": "^9.22.0",
"nodemon": "^3.0.2",
"prettier": "^3.5.3"
},
"files": [
"bin/",
"src/",
"index.js",
"README.md",
"LICENSE"
]
}