-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-native-jumbo-html",
"version": "0.1.0",
"description": "Render HTML tags as React Native components",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"test": "jest",
"flow": "flow",
"lint": "eslint ."
},
"keywords": [
"react-native-component",
"react-component",
"react-native",
"ios",
"android",
"html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smartkarma/react-native-jumbo-html.git"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartkarma/react-native-jumbo-html/issues"
},
"homepage": "https://github.com/smartkarma/react-native-jumbo-html#readme",
"dependencies": {
"collapse-whitespace": "^1.1.6",
"css-to-react-native": "^2.0.4",
"htmlclean": "^3.0.5",
"htmlparser2-without-node-native": "^3.9.2",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"enzyme": "3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^3.2.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "~0.56.0",
"jest": "^21.2.1",
"prettier": "^1.8.2",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-native": "~0.50.4",
"react-test-renderer": "16.2.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/__setup__/enzyme.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}