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.31 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.6.0",
"description": "A component which renders HTML content as native views",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"jest": "jest",
"test": "npm run lint && npm run jest"
},
"jest": {
"setupEnvScriptFile": "<rootDir>/test/support/setupTestFramework.js",
"unmockedModulePathPatterns": [
"react",
"react-addons-test-utils",
"promise",
"source-map"
],
"preprocessorIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"babel-eslint": "6.0.2",
"babel-jest": "^10.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "2.7.0",
"eslint-plugin-react": "4.3.0",
"jest-cli": "^0.10.0",
"react": "^0.14.5",
"react-addons-test-utils": "^0.14.5",
"react-native": "^0.23.1"
},
"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"
}
}