-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.67 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
48
49
50
51
52
53
54
55
{
"name": "jest-transformer-mdx",
"version": "3.3.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:user-settings": "jest --config jest.config.user-settings.js",
"test:mdx-options-inline": "NODE_OPTIONS=--experimental-vm-modules npx jest --no-cache --config jest.config.mdx-options.js",
"test:mdx-options-file": "NODE_OPTIONS=--experimental-vm-modules npx jest --no-cache --config jest.config.mdx-options-file.js",
"test:mdx-options": "npm run test:mdx-options-inline && npm run test:mdx-options-inline",
"test": "npm run test:index && npm run test:cra && npm run test:user-settings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitttttten/jest-transformer-md.git"
},
"keywords": [
"jest",
"transform",
"markdown",
"md",
"frontmatter"
],
"author": "bitttttten <bitttttten@googlemail.com>",
"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-jest": "^27.0.1",
"babel-preset-react-app": "^9.0.0",
"gray-matter": "^4.0.2",
"react": "^16.8.6",
"rehype-slug": "^4.0.1",
"stringify-object": "^3.3.0"
},
"peerDependencies": {
"babel-jest": "^27.0.1",
"jest": "^27.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.6.2",
"@testing-library/react": "^8.0.4",
"jest": "^27.0.1",
"prettier": "^1.18.2",
"react-dom": "^16.8.6",
"standard-version": "^9.3.0"
}
}