-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "react-native-expo-image-cache",
"version": "4.1.0",
"description": "React Native Image Cache and Progressive Loading based on Expo",
"main": "dist/module/index.js",
"react-native": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"prepare": "bob build",
"tsc": "tsc --noEmit",
"lint": "eslint src/**/*"
},
"repository": {
"type": "git",
"url": "https://github.com/wcandillon/react-native-expo-image-cache.git"
},
"author": "William Candillon <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"image",
"cache"
],
"bugs": {
"url": "https://github.com/wcandillon/react-native-expo-image-cache/issues"
},
"homepage": "https://github.com/wcandillon/react-native-expo-image-cache#readme",
"devDependencies": {
"@react-native-community/bob": "^0.4.1",
"@types/crypto-js": "^3.1.43",
"@types/lodash": "^4.14.134",
"@types/react": "^16.8.20",
"@types/react-native": "^0.57.63",
"eslint": "^5.16.0",
"eslint-config-react-native-wcandillon": "^1.2.2",
"expo-file-system": "^5.0.1",
"expo-blur": "^6.0.0"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"lodash": "^4.17.4"
},
"peerDependencies": {
"expo-blur": "*",
"expo-file-system": "*",
"react": "*",
"react-native": "*"
},
"@react-native-community/bob": {
"source": "src",
"output": "dist",
"targets": [
"module",
"typescript"
]
}
}