-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "react-native-status-bar-height",
"version": "2.6.0",
"description": "Get status bar height for React Native App",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "npx jest --coverage",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ovr/react-native-status-bar-height.git"
},
"keywords": [
"react-native"
],
"author": "Dmitry Patsura <talk@dmtry.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ovr/react-native-status-bar-height/issues"
},
"homepage": "https://github.com/ovr/react-native-status-bar-height#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"flow-bin": "^0.104",
"jest": "^26.6.3",
"react-native": "^0.62.2",
"typescript": "^3.3.3333"
},
"jest": {
"preset": "react-native",
"collectCoverage": true,
"coverageReporters": [
"html",
"json-summary"
]
},
"dependencies": {
"react": "^16.9.0"
}
}