-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 976 Bytes
/
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
{
"name": "remark-selective-toc",
"version": "0.3.0",
"description": "Remark Plugin to selectively add a table of contents ",
"main": "index.js",
"type": "module",
"files": [
"index.js"
],
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvinometric/remark-selective-toc.git"
},
"keywords": [
"markdown",
"plugin",
"remark",
"remark-plugin",
"toc",
"unified"
],
"author": "Alvin Bryan <[email protected]> (https://alvin.codes)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alvinometric/remark-selective-toc/issues"
},
"homepage": "https://github.com/alvinometric/remark-selective-toc#readme",
"dependencies": {
"js-yaml": "^4.1.0",
"mdast-util-toc": "^7.0.0",
"unist-util-filter": "^5.0.1",
"unist-util-modify-children": "^4.0.0"
},
"devDependencies": {
"remark": "^15.0.1",
"to-vfile": "^8.0.0"
}
}