-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
{
"name": "react-native-smart-statusbar",
"version": "1.0.24",
"description": "The smart status bar for react-native that intelligently handles safe area across iOS and Android, background color etc",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "npm run prettier:write && tsc -p .",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.tsx\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.tsx\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.tsx": [
"npm run prettier:write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/irohitb/react-native-smart-statusbar.git"
},
"keywords": [
"react-native",
"status-bar",
"react-native-status-bar",
"safe-area",
"safearea",
"react-native-safe-area"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/irohitb/react-native-smart-statusbar/issues"
},
"devDependencies": {
"@types/react-native": "^0.64.2",
"husky": "^7.0.1",
"lint-staged": "^10.2.10",
"prettier": "^2.0.5",
"typescript": "^4.1.3"
},
"homepage": "https://github.com/irohitb/react-native-smart-statusbar#readme",
"peerDependencies": {
"react": ">=16.12.0",
"react-native": ">=0.61",
"react-native-device-info": ">=5.4.1"
},
"dependencies": {
"react-native-device-info": "^8.1.5"
}
}