-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
40 lines (40 loc) · 972 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
{
"name": "markdown-it-implicit-figures",
"version": "0.12.0",
"description": "Render images occurring by itself in a paragraph as `<figure><img ...></figure>`, similar to pandoc's implicit_figures",
"license": "MIT",
"repository": "arve0/markdown-it-implicit-figures",
"author": {
"name": "Arve Seljebu",
"email": "arve.seljebu@gmail.com",
"url": "arve0.github.io"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"preversion": "mocha",
"postpublish": "git push && git push --tags"
},
"files": [
"index.js",
"demo.js"
],
"homepage": "https://github.com/arve0/markdown-it-implicit-figures",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"img",
"figure",
"image",
"implicit_figures"
],
"dependencies": {},
"devDependencies": {
"markdown-it": ">12.3.2",
"markdown-it-attrs": "*",
"mocha": "^10.2.0"
},
"tonicExampleFilename": "demo.js"
}