-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 KB
/
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
44
45
46
47
48
49
50
{
"name": "md-toc-cli",
"version": "3.1.1",
"description": "Automatically insert or update a clickable table of contents (TOC) into your Markdown documents based on its headings using CLI or JavaScript module.",
"type": "module",
"bin": "./src/bin/index.js",
"main": "./src/lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"lint": "eslint .; prettier --check .",
"format": "prettier --write . && eslint --fix .",
"test": "mocha",
"types": "tsc && prettier --write ./types/",
"start": "./src/bin/index.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugene-khyst/md-toc-cli.git"
},
"keywords": [
"markdown",
"toc",
"table-of-contents",
"cli"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Eugene Khyst",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eugene-khyst/md-toc-cli/issues"
},
"homepage": "https://github.com/eugene-khyst/md-toc-cli#readme",
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}