forked from jsdf/react-native-htmlview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "react-native-htmlview",
"version": "0.6.0",
"description": "A component which renders HTML content as native views",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run mocha",
"mocha": "node_modules/.bin/mocha --require test/support/setupTestFramework.js --compilers js:babel-register test/*-test.js"
},
"devDependencies": {
"babel-eslint": "6.0.2",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-native": "^1.9.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"eslint": "2.7.0",
"eslint-plugin-react": "4.3.0",
"jsdom": "^9.6.0",
"mocha": "^3.1.0",
"react": "^0.14.5",
"react-addons-test-utils": "^0.14.5",
"react-dom": "^0.14.5",
"react-native": "^0.23.1",
"react-native-mock": "^0.2.6"
},
"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"
}
}