-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "remark-mdx",
"version": "2.0.0-next.8",
"description": "remark plugin to add support for mdx",
"repository": "https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx",
"bugs": "https://github.com/mdx-js/mdx/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)",
"Christian Murphy <[email protected]>"
],
"license": "MIT",
"types": "types/index.d.ts",
"files": [
"index.js",
"types/index.d.ts"
],
"keywords": [
"unified",
"remark",
"remark-plugin",
"plugin",
"mdast",
"markdown",
"jsx",
"javascript",
"xml",
"mdx"
],
"scripts": {
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test/index.js",
"test-types": "dtslint types",
"test": "yarn format && yarn test-coverage && yarn test-types"
},
"dependencies": {
"mdast-util-mdx": "^0.1.1",
"micromark-extension-mdx": "^0.2.0",
"micromark-extension-mdxjs": "^0.3.0"
},
"devDependencies": {
"nyc": "^15.1.0",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"tape": "^5.0.1",
"to-vfile": "^6.1.0",
"unified": "^9.0.0",
"unist-builder": "^2.0.3",
"unist-util-remove-position": "^3.0.0",
"unist-util-visit": "^2.0.0"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"gitHead": "bf7deab69996449cb99c2217dff75e65855eb2c1"
}