-
Notifications
You must be signed in to change notification settings - Fork 419
/
package.json
41 lines (41 loc) · 1.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": "react-native-markdown-renderer",
"version": "3.2.8",
"description": "Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer).",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/mientjan/react-native-markdown-renderer.git"
},
"keywords": [
"react",
"react-native",
"native",
"markdown",
"commonmark",
"markdown-it"
],
"author": "Mient-jan Stelling",
"license": "MIT",
"bugs": {
"url": "https://github.com/mientjan/react-native-markdown-renderer/issues"
},
"homepage": "https://github.com/mientjan/react-native-markdown-renderer#readme",
"dependencies": {
"@types/markdown-it": "^0.0.4",
"@types/react-native": ">=0.50.0",
"markdown-it": "^8.4.0",
"prop-types": "^15.5.10",
"react-native-fit-image": "^1.5.2"
},
"peerDependencies": {
"react": "^16.2.0",
"react-native": "^0.50.4"
},
"devDependencies": {
"chokidar": "^2.0.0",
"fs-extra": "^5.0.0"
}
}