-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "mdx.macro",
"version": "0.2.9",
"main": "mdx.macro.js",
"keywords": [
"babel-plugin-macros",
"mdx"
],
"description": "A babel-macro for transforming mdx files.",
"author": "James K Nelson <[email protected]> (https://frontarm.com/authors/james-k-nelson/)",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/parser": "^7.1.3",
"@mdx-js/mdx": "^0.15.5",
"@mdx-js/tag": "^0.15.0",
"babel-plugin-macros": "^2.4.2",
"babel-preset-react-app": "^9.0.1",
"babel-traverse": "^6.26.0",
"find-cache-dir": "^2.0.0",
"fs-extra": "^7.0.0",
"rev-hash": "^2.0.0"
},
"repository": {
"url": "https://github.com/frontarm/mdx-util"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-plugin-tester": "^5.5.1",
"jest": "^23.6.0",
"react-scripts": "2.0.5"
},
"scripts": {
"test": "jest",
"prepublish": "npm run test"
},
"jest": {
"testEnvironment": "node"
}
}