-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"license": "MIT",
"version": "0.9.0",
"name": "markdown-it-table-of-contents",
"main": "index.js",
"scripts": {
"test": "mocha test --recursive"
},
"engines": {
"node": ">6.4.0"
},
"description": "A Markdown-it plugin for adding a table of contents to markdown documents",
"homepage": "https://github.com/cmaas/markdown-it-table-of-contents",
"keywords": [
"markdown",
"markdown-it",
"toc",
"table of contents",
"markdown-it-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/cmaas/markdown-it-table-of-contents.git"
},
"bugs": {
"url": "https://github.com/cmaas/markdown-it-table-of-contents/issues"
},
"author": "Chris Maas <https://github.com/cmaas>",
"contributors": [
"Listed at <https://github.com/martinlissmyr/markdown-it-table-of-contents/contributors>",
"Original author: Martin Lissmyr <https://github.com/martinlissmyr>"
],
"devDependencies": {
"markdown-it": "~14.1.0",
"markdown-it-anchor": "~9.2.0",
"markdown-it-attrs": "^4.3.1",
"mocha": "~11.0.1"
}
}