forked from kitze/react-in-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-components-in-markdown",
"version": "0.1.5",
"description": "Render custom React components in Markdown",
"main": "dist/react-components-in-markdown.js",
"jsnext:main": "dist/react-components-in-markdown.es2015.js",
"scripts": {
"test": "jest",
"build": "./node_modules/rollup-babel-lib-bundler/bin/index.js index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xurban42/react-in-markdown.git"
},
"keywords": [
"xurban42",
"kitze",
"react",
"markdown",
"custom components"
],
"author": "xurban42 <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kitze/react-in-markdown/issues"
},
"homepage": "https://github.com/kitze/react-in-markdown#readme",
"devDependencies": {
"babel-jest": "^15.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "^6.5.0",
"jest-cli": "^15.1.1",
"rollup-babel-lib-bundler": "3.1.0"
},
"rollupBabelLibBundler": {
"moduleName": "reactInMarkdown",
"dest": "dist",
"babel": {
"presets": [
"es2015-rollup",
"react",
"stage-0"
],
"plugins": [
"transform-decorators-legacy"
]
}
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"moduleDirectories": [
"node_modules",
"src"
]
},
"dependencies": {
"react": "^15.3.2"
},
"peerDependencies": {
"markdown-to-react-components": "^0.2.2"
}
}