forked from wcandillon/react-native-expo-image-cache
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "react-native-expo-image-cache",
"version": "3.2.0",
"description": "React Native Image Cache and Progressive Loading based on Expo",
"main": "dist/src/index.js",
"files": [
"dist"
],
"scripts": {
"compile": "rm -rf dist/* && babel . --out-dir dist --ignore node_modules,dist --source-maps",
"flow": "flow check --show-all-errors | flow-result-checker",
"lint": "eslint App.js src/",
"test": "yarn lint && yarn flow",
"prepare": "npm run compile && install-self-peers -- --ignore-scripts"
},
"repository": {
"type": "git",
"url": "https://github.com/UseAllFive/react-native-expo-image-cache.git"
},
"author": "William Candillon <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"image",
"cache"
],
"bugs": {
"url": "https://github.com/UseAllFive/react-native-expo-image-cache/issues"
},
"homepage": "https://github.com/UseAllFive/react-native-expo-image-cache#readme",
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"babel-eslint": "^8.2.1",
"babel-preset-expo": "^4.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"flow-bin": "^0.64.0",
"flow-result-checker": "^1.0.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react-native": "^4.0.0",
"crypto-js": "^3.1.9-1",
"eslint-plugin-react-native": "^3.2.1",
"lodash": "^4.17.4"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}