-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.31 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
51
52
53
54
55
56
57
{
"name": "@cs-magic/md-toc",
"version": "0.5.1",
"description": "A flexible markdown table of contents generator with configurable styles",
"main": "dist/index.js",
"bin": {
"md-toc": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"repository": "git+https://github.com/cs-magic/markdown-toc-gen.git",
"scripts": {
"build": "tsc",
"dev": "tsc -w & nodemon dist/index.js --watch dist",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"markdown",
"toc",
"table-of-contents",
"documentation",
"generator",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"glob": "^7.2.0",
"markdown-toc": "^1.2.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/chokidar": "^2.1.7",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chokidar": "^4.0.1",
"eslint": "^8.4.0",
"jest": "^27.4.3",
"nodemon": "^3.1.7",
"prettier": "^2.5.0",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
}
}