forked from thlorenz/doctoc
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@technote-space/doctoc",
"version": "2.6.4",
"description": "Generates TOC for markdown files of local git repo.",
"keywords": [
"github",
"markdown",
"documentation",
"readme",
"parser",
"bitbucket",
"gitlab",
"ghost"
],
"homepage": "https://github.com/technote-space/doctoc#readme",
"bugs": {
"url": "https://github.com/technote-space/doctoc/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/technote-space/doctoc.git"
},
"license": "MIT",
"author": "Thorsten Lorenz <[email protected]> (thlorenz.com)",
"contributors": [
{
"name": "Technote",
"email": "[email protected]",
"url": "https://technote.space"
}
],
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c",
"cover": "vitest run --coverage",
"lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts' --cache",
"lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'",
"test": "yarn lint && yarn typecheck && yarn cover",
"typecheck": "tsc --noEmit",
"update": "npm_config_yes=true npx npm-check-updates -u --timeout 100000 && yarn install && yarn upgrade && yarn audit"
},
"dependencies": {
"@technote-space/anchor-markdown-header": "^1.1.40",
"@textlint/markdown-to-ast": "^13.3.2",
"htmlparser2": "^8.0.2",
"update-section": "^0.3.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@rollup/plugin-typescript": "^11.1.0",
"@sindresorhus/tsconfig": "^3.0.1",
"@textlint/ast-node-types": "^13.3.2",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"rollup": "^3.21.2",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"publishConfig": {
"access": "public"
}
}