forked from kfiroo/react-native-cached-image
-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
71 lines (71 loc) · 1.7 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
69
70
71
{
"name": "react-native-cached-image",
"version": "1.4.3",
"description": "CachedImage component for react-native",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest"
},
"jest": {
"preset": "react-native",
"globals": {
"NODE_ENV": "test"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/CachedImageExample/"
],
"modulePathIgnorePatterns": [
"/CachedImageExample/"
],
"verbose": true
},
"repository": {
"type": "git",
"url": "https://github.com/kfiroo/react-native-cached-image"
},
"keywords": [
"react-native",
"cache",
"image"
],
"author": "kfiroo <kfirgolan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kfiroo/react-native-cached-image/issues"
},
"homepage": "https://github.com/kfiroo/react-native-cached-image",
"files": [
"index.js",
"CachedImage.js",
"ImageCacheProvider.js",
"ImageCacheManager.js",
"ImageCacheManagerOptionsPropTypes.js",
"ImageCachePreloader.js",
"utils/fsUtils.js",
"utils/pathUtils.js"
],
"typings": "./index.d.ts",
"dependencies": {
"crypto-js": "3.1.9-1",
"lodash": "^4.17.10",
"prop-types": "15.5.10",
"react-native-clcasher": "1.0.0",
"url-parse": "^1.4.1"
},
"peerDependencies": {
"@react-native-community/netinfo": "^4.6.0",
"rn-fetch-blob": "^0.11.2"
},
"devDependencies": {
"babel-jest": "^21.0.2",
"babel-preset-env": "*",
"babel-preset-react-native": "^4.0.1",
"jest": "^21.0.2",
"jest-react-native": "^18.0.0",
"react": "16.4.1",
"react-native": "^0.48.3",
"react-test-renderer": "^15.6.1",
"regenerator-runtime": "^0.11.0"
}
}