-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "remark-iframes",
"version": "4.1.1",
"description": "Parses custom Markdown syntax to external frames",
"type": "module",
"repository": {
"url": "https://github.com/zestedesavoir/zmarkdown/tree/master/packages/remark-iframes",
"type": "git"
},
"author": "François (artragis) Dambrine <[email protected]>",
"contributors": [
"Sébastien (AmarOk) Blin <[email protected]>",
"François (artragis) Dambrine <[email protected]>",
"Victor Felder <[email protected]> (https://draft.li)",
"Stalone <[email protected]>"
],
"scripts": {
"pretest": "eslint .",
"test": "jest",
"coverage": "jest --coverage"
},
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"LICENSE-MIT",
"lib",
"README.md"
],
"keywords": [
"remark",
"iframes",
"embed"
],
"license": "MIT",
"dependencies": {
"micromark-extension-iframes": "file:../micromark-extension-iframes",
"micromark-util-sanitize-uri": "^2.0.0",
"node-fetch": "^3.3.2",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"remark-rehype": "^11.1.0",
"rehype-stringify": "^10.0.0",
"unified": "^11.0.4"
}
}