forked from cmaas/markdown-it-table-of-contents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"license": "MIT",
"version": "0.6.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/martinlissmyr/markdown-it-table-of-contents",
"keywords": [
"markdown",
"markdown-it",
"toc",
"table of contents",
"markdown-it-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/martinlissmyr/markdown-it-table-of-contents.git"
},
"bugs": {
"url": "https://github.com/martinlissmyr/markdown-it-table-of-contents/issues"
},
"author": "Martin Lissmyr <https://github.com/martinlissmyr>",
"contributors": [
"Listed at <https://github.com/martinlissmyr/markdown-it-table-of-contents/contributors>"
],
"devDependencies": {
"markdown-it": "~8.4.2",
"markdown-it-anchor": "~5.0.1",
"markdown-it-attrs": "^2.4.1",
"mocha": "~5.2.0"
}
}