forked from juiceo/react-native-easy-markdown
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name": "react-native-easy-markdown",
"version": "2.0.0",
"description": "Simple & customizable React Native component to render Github-flavoured markdown using minimal native components.",
"main": "lib/index.js",
"repository": "https://github.com/TitanInvest/react-native-easy-markdown",
"scripts": {
"build": "babel index.js styles.js Utils.js -d lib",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react-native",
"native",
"markdown",
"parse",
"parser"
],
"contributors": [
"Juuso Lappalainen",
"Zach Ivester <[email protected]>"
],
"license": "MIT",
"dependencies": {
"simple-markdown": "^0.4.4"
},
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react-native": "^4.0.1"
}
}