-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 781 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 781 Bytes
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
{
"name": "@innerfuse/mdx.macro",
"version": "0.1.0",
"main": "mdx.macro.js",
"keywords": [
"babel-plugin-macros",
"mdx"
],
"description": "A babel-macro for transforming mdx",
"author": "Weyert de Boer <weyert@innerfuse.biz>",
"license": "MIT",
"dependencies": {
"@mdx-js/mdx": "0.16.6",
"babel-plugin-macros": "^2.4.3",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0"
},
"repository": {
"url": "https://github.com/weyert/mdx.macro"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/cli": "^7.2.3",
"babel-jest": "23.6.0",
"babel-plugin-tester": "^5.5.2",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1"
},
"scripts": {
"test": "jest"
}
}