forked from agromakler/react-native-image-cache-hoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "react-native-image-cache-hoc",
"version": "2.0.0",
"description": "React Native Higher Order Component that adds advanced caching functionality to the react native Image component.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest --coverage && if [ \"$COVERALLS_ENV\" = \"production\" ]; then cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/billmalarky/react-native-image-cache-hoc.git"
},
"keywords": [
"react",
"react-native",
"higher-order-component",
"hoc",
"image",
"caching",
"image-component",
"component",
"react-component",
"media",
"react-native-component"
],
"author": "Reid Mayo",
"license": "MIT",
"bugs": {
"url": "https://github.com/billmalarky/react-native-image-cache-hoc/issues"
},
"homepage": "https://github.com/billmalarky/react-native-image-cache-hoc#readme",
"devDependencies": {
"babel-eslint": "^8.0.1",
"coveralls": "^3.0.0",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.1.0",
"jest": "^29.3.1",
"react": "^16.0.0",
"react-native": "^0.70.5",
"react-test-renderer": "^16.0.0",
"should": "^13.1.2",
"should-sinon": "^0.0.6",
"sinon": "^4.1.3"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./tests/config.js"
]
},
"dependencies": {
"buffer": "^5.0.8",
"crypto-js": "^3.1.9-1",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"rn-fetch-blob": "0.10.13",
"react-native-uuid": "^1.4.9",
"traverse": "^0.6.6",
"url-parse": "^1.2.0",
"validator": "^13.7.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}