-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 889 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
41
{
"name": "remark-mdx-filter-imports",
"description": "Removes local imports in mdx files that match a given pattern",
"version": "0.1.3",
"main": "index.js",
"author": "John Knox",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jknoxville/remark-mdx-filter-imports"
},
"files": [
"index.js"
],
"keywords": [
"remark",
"remark-plugin",
"markdown"
],
"dependencies": {
"unist-util-visit": "^2.0.3",
"@babel/parser": "^7.12.7",
"@babel/generator": "^7.12.5"
},
"devDependencies": {
"@mdx-js/mdx": "^1.6.22",
"jest": "^26.6.3",
"prettier": "1.19.1",
"remark-mdx": "^1.6.22",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.0",
"unified": "^9.2.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"test": "jest"
}
}