-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 776 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 776 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": "markdown-it-markmap",
"version": "0.1.0",
"description": "Markmap plugin for markdown-it markdown parser.",
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"markmap",
"mindmap"
],
"repository": "https://github.com/deiv/markdown-it-markmap.git",
"license": "MIT",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "rimraf dist && rollup -c && node test/test.js"
},
"files": [
"src/index.js",
"dist/index.js"
],
"devDependencies": {
"assert": "^2.0.0",
"markdown-it": "^8.4.2",
"markdown-it-testgen": "~0.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.8.2"
},
"dependencies": {
"markmap-lib": "^0.7.4"
}
}