forked from CharlesMangwa/react-native-simple-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "@lyv/react-native-markdown",
"repository": "https://github.com/rpenfold/react-native-markdown",
"version": "2.0.0",
"description": "Render Markdown in React Native with native components",
"main": "dist/index.js",
"author": "Ryan Penfold",
"keywords": [
"react-native",
"native",
"markdown",
"md",
"parse",
"parser"
],
"scripts": {
"lint": "eslint .",
"build": "tsc"
},
"dependencies": {
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"lodash": "^4.15.0",
"prop-types": "^15.6.0",
"simple-markdown": "^0.3.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/lodash": "4.14.149",
"@types/react": "16.9.23",
"@types/react-native": "0.61.20",
"babel-cli": "^6.26.0",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.5.1",
"typescript": "3.8.3"
}
}