react-native-fast-image/package.json

61 lines
1.7 KiB
JSON

{
"name": "react-native-fast-image",
"version": "2.2.4",
"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",
"author": "Dylan Vann <dylanvann@gmail.com> (http://dylanvann.com)",
"files": [
"ios",
"android",
"utils",
"FastImage.js",
"index.d.ts"
],
"main": "FastImage.js",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DylanVann/react-native-fast-image.git"
},
"scripts": {
"format": "prettier --write --no-semi --single-quote --trailing-comma all ./FastImage.js ./example/*.js ./example/fastImage/*.js ./server/*.js",
"prepare": "git submodule update --init --recursive",
"test": "yarn run test:pretty && yarn run test:jest",
"test:jest": "jest *.js",
"test:pretty": "prettier-check --write --no-semi --single-quote --trailing-comma all ./FastImage.js ./example/*.js ./example/fastImage/*.js ./server/*.js"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^21.2.1",
"prettier": "^1.5.2",
"prettier-check": "^2.0.0",
"react": "16.0.0",
"react-native": "^0.50.4",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"example",
"server"
]
}
}