react-native-blur/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

{
2019-03-26 15:18:58 -04:00
"name": "@react-native-community/blur",
2020-04-09 01:47:52 +03:00
"version": "3.6.0",
"description": "React Native Blur component",
"main": "index.js",
"scripts": {
2019-03-26 14:19:21 -04:00
"test": "echo \"Error: no test specified\" && exit 1",
2020-04-09 10:32:59 +02:00
"lint": "eslint src index.js example"
},
"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"
2019-03-26 14:19:21 -04:00
},
"devDependencies": {
2020-04-08 15:14:14 +03:00
"@react-native-community/eslint-config": "^1.0.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "2.0.4",
"react": "16.13.1",
"react-native": "0.62.1"
2019-03-26 14:19:21 -04:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
2019-03-26 14:52:44 -04:00
"*.{js,json,css,md}": [
2020-04-09 10:33:21 +02:00
"prettier --write"
2019-03-26 14:52:44 -04:00
]
}
}