react-native-blur/package.json

50 lines
1.2 KiB
JSON

{
"name": "@react-native-community/blur",
"version": "3.4.0",
"description": "React Native Blur component",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:react-native-community/react-native-blur.git"
},
"keywords": [
"react-native",
"ios",
"react-component"
],
"author": "Alexey Kureev <kureev-mail@ya.ru> (https://github.com/Kureev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-community/react-native-blur/issues"
},
"homepage": "https://github.com/react-native-community/react-native-blur",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.5",
"eslint": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "1.18.2",
"react": "16.11.0",
"react-native": "0.61.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}