forked from jsdf/react-native-htmlview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "react-native-htmlview",
"version": "0.16.0",
"description": "A component which renders HTML content as native views",
"main": "index.js",
"scripts": {
"test": "yarn run lint && yarn run jest",
"lint": "./format.sh --list-different; if [ $? != 0 ]; then echo \"CODE FORMATTING: please run 'yarn format' and commit the changes\"; exit 1; fi",
"format": "./format.sh --write",
"release": "npm publish .; git push && git push --tags # yarn publish is often broken",
"jest": "jest"
},
"devDependencies": {
"@babel/runtime": "^7.5.5",
"babel-preset-expo": "^5.0.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz",
"react-test-renderer": "16.5.0"
},
"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.2"
}
}