forked from bitttttten/jest-transformer-mdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "jest-transformer-mdx",
"version": "2.0.0",
"description": "Jest transformer for MDX",
"main": "index.js",
"scripts": {
"test:index": "jest --config jest.config.js",
"test:cra": "jest --config jest.config.cra.js",
"test": "npm run test:index && npm run test:cra"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitttttten/jest-transformer-md.git"
},
"keywords": [
"jest",
"transform",
"markdown",
"md",
"frontmatter"
],
"author": "bitttttten <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitttttten/jest-transformer-md/issues"
},
"homepage": "https://github.com/bitttttten/jest-transformer-md#readme",
"dependencies": {
"@mdx-js/mdx": "^1.0.21",
"@mdx-js/react": "^1.0.21",
"babel-preset-react-app": "^9.0.0",
"gray-matter": "^4.0.2",
"react": "^16.8.6",
"stringify-object": "^3.3.0"
},
"peerDependencies": {
"babel-jest": "^24.8.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@testing-library/react": "^8.0.4",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"react-dom": "^16.8.6"
}
}