forked from jsdf/react-native-htmlview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "react-native-htmlview",
"version": "0.12.0",
"description": "A component which renders HTML content as native views",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "yarn run format-lint && yarn run lint && yarn run jest",
"format-lint": "./format.sh --list-different; if [ $? != 0 ]; then echo \"CODE FORMATTING: please run 'yarn run format' and commit the changes\"; exit 1; fi",
"format": "./format.sh --write && eslint . --fix",
"jest": "jest"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.5.0",
"eslint": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^19.0.2",
"prettier": "^1.5.2",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.12",
"react-dom": "16.0.0-alpha.12",
"react-native": "0.46.3",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native"
},
"author": "James Friend <[email protected]> (http://jsdf.co/)",
"license": "ISC",
"keywords": [
"react",
"html",
"react-native",
"react-component",
"react-native-component",
"mobile",
"ui"
],
"homepage": "https://github.com/jsdf/react-native-htmlview",
"bugs": "https://github.com/jsdf/react-native-htmlview/issues",
"repository": {
"type": "git",
"url": "git://github.com/jsdf/react-native-htmlview.git"
},
"dependencies": {
"entities": "^1.1.1",
"htmlparser2-without-node-native": "^3.9.0"
}
}