forked from CharlesMangwa/react-native-simple-markdown
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 KB
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
69
70
71
72
{
"name": "@stream-io/react-native-simple-markdown",
"repository": "https://github.com/CharlesMangwa/react-native-simple-markdown",
"version": "1.1.2",
"description": "Render Markdown in React Native with native components (iOS & Android)",
"main": "lib/index.js",
"files": [
"lib"
],
"author": "Charles Mangwa <charlesmangwa@gmail.com>",
"scripts": {
"lint": "eslint .",
"flow": "flow --show-all-errors",
"prepack": "npm run prepack:clean && npm run prepack:babel && npm run prepack:flow",
"prepack:clean": "rimraf lib",
"prepack:babel": "babel -d lib src",
"prepack:flow": "flow-copy-source -v src lib"
},
"dependencies": {
"lodash": "^4.17.15",
"simple-markdown": "^0.7.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react",
"flow"
],
"env": {
"production": {
"plugins": [
"transform-flow-strip-types"
]
}
}
},
"keywords": [
"react-native",
"native",
"markdown",
"md",
"parse",
"parser"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.61.0",
"flow-copy-source": "^1.2.1",
"husky": "^0.14.3",
"pretty-quick": "^1.2.2",
"rimraf": "^2.6.2"
}
}