-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 781 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 781 Bytes
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
{
"name": "remark-sectionize",
"version": "2.1.0",
"description": "Wrap content below each heading in a <section> element",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/jake-low/remark-sectionize",
"author": "Jake Low <hello@jakelow.com>",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"test": "node test.js"
},
"keywords": [
"remark",
"plugin",
"markdown",
"html",
"section"
],
"dependencies": {
"unist-util-find-after": "^4.0.1",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"dedent": "^0.7.0",
"remark": "^14.0.2",
"tape": "^5.6.3",
"unified": "^11.0.5",
"unist-builder": "^3.0.1",
"unist-util-remove-position": "^4.0.2"
}
}