forked from CharlesMangwa/react-native-simple-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.76 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
{
"name": "react-native-simple-markdown",
"repository": "https://github.com/CharlesMangwa/react-native-simple-markdown",
"version": "next",
"description":
"Render Markdown in React Native with native components (iOS & Android)",
"main": "lib/index.js",
"files": ["lib"],
"author": "Charles Mangwa <[email protected]>",
"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.15.0",
"prop-types": "^15.6.0",
"simple-markdown": "^0.3.1"
},
"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"
}
}