-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mohomed Thahsan
committed
Sep 5, 2018
1 parent
06b8f33
commit 24fedbb
Showing
4 changed files
with
4,760 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,69 @@ | ||
{ | ||
"name": "react-native-image-fallback", | ||
"description": "Image loader component with fallback options for React Native apps", | ||
"main": "index.js", | ||
"license": "MIT", | ||
"version": "0.0.4", | ||
"keywords": [ | ||
"extends": ["eslint:recommended", "plugin:react-native/all", "plugin:react/all", "google", "plugin:jest/recommended"], | ||
"globals": { | ||
"require": false | ||
}, | ||
"plugins": [ | ||
"react", | ||
"babel", | ||
"react-native", | ||
"react-native-component", | ||
"image-loader", | ||
"fallback" | ||
"jest" | ||
], | ||
"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" | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"browser": true, | ||
"jest": true | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/mthahzan/react-native-image-fallback.git" | ||
"ecmaFeatures": { | ||
"jsx": true, | ||
"modules": true | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "^7.2.3", | ||
"babel-preset-react-native": "^1.9.2", | ||
"eslint": "^3.19.0", | ||
"eslint-config-google": "^0.7.1", | ||
"eslint-plugin-react": "^7.0.1", | ||
"eslint-plugin-react-native": "^2.3.2", | ||
"react": "16.0.0-alpha.6", | ||
"react-native": "0.44.2" | ||
"parser": "babel-eslint", | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"dependencies": { | ||
"prop-types": "^15.5.10" | ||
"rules": { | ||
"indent": ["error", 2], | ||
"new-cap": 0, | ||
"max-len": [2, {"code": 120, "ignoreTrailingComments": true}], | ||
"no-undef": 2, | ||
"require-jsdoc": 0, | ||
"prefer-const": "error", | ||
"arrow-spacing": "error", | ||
"padding-line-between-statements": [ | ||
"error", | ||
{"blankLine": "always", "prev": "*", "next": "return"} | ||
], | ||
"jsx-quotes": "error", | ||
"space-infix-ops": ["error", {"int32Hint": true}], | ||
"space-unary-ops": [ | ||
1, { | ||
"words": true, | ||
"nonwords": false, | ||
"overrides": { | ||
"new": false, | ||
"++": true | ||
} | ||
}], | ||
"no-multiple-empty-lines": ["error", {"max": 1, "maxBOF": 1}], | ||
"react/forbid-component-props": 0, | ||
"react/forbid-prop-types": 0, | ||
"react/jsx-indent": [2, 2], | ||
"react/jsx-indent-props": [2, 2], | ||
"react/jsx-no-literals": 0, | ||
"react/jsx-filename-extension": 0, | ||
"react/no-set-state": 0, | ||
"react/prefer-stateless-function": 0, | ||
"react/no-multi-comp": [2, { "ignoreStateless": true }], | ||
"react/jsx-one-expression-per-line": 0, | ||
"react/destructuring-assignment": 0, | ||
"no-invalid-this": 0, | ||
"babel/no-invalid-this": 2, | ||
"react/no-access-state-in-setstate": 0, | ||
"react/prop-types": [2] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.