forked from iamacup/react-native-markdown-display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "react-native-markdown-display",
"version": "7.0.0-alpha.2",
"description": "Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer), originally created by Mient-jan Stelling as react-native-markdown-renderer",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "./node_modules/.bin/eslint --fix --cache ./src"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iamacup/react-native-markdown-display.git"
},
"keywords": [
"react",
"react-native",
"native",
"markdown",
"commonmark",
"markdown-it"
],
"author": "Mient-jan Stelling and Tom Pickard + others from the community",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamacup/react-native-markdown-display/issues"
},
"homepage": "https://github.com/iamacup/react-native-markdown-display/",
"dependencies": {
"css-to-react-native": "^3.0.0",
"markdown-it": "^10.0.0",
"prop-types": "^15.7.2",
"react-native-fit-image": "^1.5.5"
},
"peerDependencies": {
"react": "^16.2.0",
"react-native": ">=0.50.4"
},
"devDependencies": {
"@types/markdown-it": "^10.0.1",
"@types/react-native": ">=0.50.0",
"@babel/core": "^7.9.6",
"@babel/runtime": "^7.9.6",
"@react-native-community/eslint-config": "^1.1.0",
"@typescript-eslint/parser": "^2.32.0",
"eslint": "^7.0.0",
"json-schema": "^0.2.5",
"pre-commit": "1.2.2",
"typescript": "^3.8.3"
}
}