forked from Kureev/react-native-blur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@react-native-community/blur",
"version": "3.6.1",
"description": "React Native Blur component",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src index.js example"
},
"repository": {
"type": "git",
"url": "[email protected]:react-native-community/react-native-blur.git"
},
"keywords": [
"react-native",
"ios",
"react-component"
],
"author": "Alexey Kureev <[email protected]> (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": "^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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
]
}
}