-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "react-native-image-fallback",
"description": "Image loader component with fallback options for React Native apps",
"main": "index.js",
"license": "MIT",
"version": "1.0.1",
"keywords": [
"react-native",
"react-native-component",
"image-loader",
"fallback"
],
"author": {
"name": "Mohomed Thahsan",
"email": "[email protected]"
},
"homepage": "https://github.com/mthahzan/react-native-image-fallback",
"bugs": {
"url": "https://github.com/mthahzan/react-native-image-fallback/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/mthahzan/react-native-image-fallback.git"
},
"scripts": {
"analyze": "eslint src/",
"shipit": "np"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-jest": "26.0.1",
"eslint": "7.2.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-native": "^3.8.1",
"np": "^6.2.4",
"react": "16.11.0",
"react-native": "0.62.2"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "16.11.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}