2017-04-13 04:13:44 +00:00
|
|
|
{
|
|
|
|
"name": "react-native-fast-image",
|
2017-08-08 05:08:04 +00:00
|
|
|
"version": "1.0.0",
|
2017-04-13 04:13:44 +00:00
|
|
|
"description": "🚩 FastImage, performant React Native image component.",
|
|
|
|
"keywords": [
|
|
|
|
"cache",
|
|
|
|
"cached",
|
|
|
|
"fastimage",
|
|
|
|
"image",
|
|
|
|
"priority"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/DylanVann/react-native-fast-image#readme",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/DylanVann/react-native-fast-image/issues"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
2017-04-17 23:50:22 +00:00
|
|
|
"author": "Dylan Vann <dylanvann@gmail.com> (http://dylanvann.com)",
|
2017-11-30 03:02:37 +00:00
|
|
|
"files": [
|
|
|
|
"ios",
|
|
|
|
"android",
|
|
|
|
"utils",
|
|
|
|
"FastImage.js"
|
|
|
|
],
|
2017-04-13 04:13:44 +00:00
|
|
|
"main": "FastImage.js",
|
|
|
|
"directories": {
|
|
|
|
"example": "example"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/DylanVann/react-native-fast-image.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2017-04-18 05:51:34 +00:00
|
|
|
"format": "prettier --write --no-semi --single-quote --trailing-comma all ./FastImage.js ./example/*.js ./server/*.js",
|
2017-04-20 14:05:02 +00:00
|
|
|
"test": "yarn run test:pretty && yarn run test:jest",
|
2017-04-18 06:06:21 +00:00
|
|
|
"test:jest": "jest *.js",
|
2017-10-31 00:38:11 +00:00
|
|
|
"test:pretty": "prettier-check --write --no-semi --single-quote --trailing-comma all ./FastImage.js ./example/*.js ./server/*.js",
|
|
|
|
"postinstall": "git clone https://github.com/rs/SDWebImage.git ios/Vendor/SDWebImage && cd ios/Vendor/SDWebImage && git submodule update --init --recursive && cd ../../.."
|
2017-04-13 04:13:44 +00:00
|
|
|
},
|
2017-11-29 04:52:39 +00:00
|
|
|
"dependencies": {
|
|
|
|
"prop-types": "^15.5.10"
|
|
|
|
},
|
2017-04-13 04:13:44 +00:00
|
|
|
"devDependencies": {
|
2017-06-28 02:47:56 +00:00
|
|
|
"babel-jest": "^20.0.3",
|
|
|
|
"babel-preset-react-native": "^2.0.0",
|
|
|
|
"jest": "^20.0.4",
|
2017-07-05 08:22:59 +00:00
|
|
|
"prettier": "^1.5.2",
|
2017-04-18 06:06:21 +00:00
|
|
|
"prettier-check": "^1.0.0",
|
2017-06-28 02:47:56 +00:00
|
|
|
"react": "16.0.0-alpha.12",
|
|
|
|
"react-native": "^0.45.1",
|
2017-07-05 08:22:59 +00:00
|
|
|
"react-test-renderer": "16.0.0-alpha.12"
|
2017-04-13 04:13:44 +00:00
|
|
|
},
|
2017-11-29 04:52:39 +00:00
|
|
|
"engines": {
|
|
|
|
"node": "9.2.0",
|
|
|
|
"yarn": "1.3.2"
|
|
|
|
},
|
2017-04-17 23:50:22 +00:00
|
|
|
"jest": {
|
|
|
|
"preset": "react-native",
|
|
|
|
"modulePathIgnorePatterns": [
|
2017-04-18 15:28:12 +00:00
|
|
|
"example",
|
|
|
|
"server"
|
2017-04-17 23:50:22 +00:00
|
|
|
]
|
2017-04-13 04:13:44 +00:00
|
|
|
}
|
|
|
|
}
|