-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 900 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
{
"name": "inline-mdx.macro",
"version": "1.0.0",
"main": "inline-mdx.macro.js",
"keywords": [
"babel-plugin-macros",
"mdx"
],
"description": "A babel-macro for transforming mdx inline.",
"author": "Matthew Hamlin <[email protected]> (https://matthamlin.me/)",
"license": "MIT",
"dependencies": {
"@babel/parser": "7.5.0",
"@babel/plugin-proposal-object-rest-spread": "7.5.0",
"@babel/plugin-syntax-jsx": "7.2.0",
"@mdx-js/mdx": "1.0.21",
"babel-plugin-macros": "2.6.1",
"dedent": "0.7.0"
},
"repository": {
"url": "https://github.com/hamlim/inline-mdx.macro"
},
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.0",
"@mdx-js/react": "1.0.21",
"babel-jest": "24.8.0",
"babel-plugin-tester": "6.4.0",
"jest": "24.8.0",
"regenerator-runtime": "0.12.0"
},
"scripts": {
"test": "jest"
}
}