-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1011 Bytes
/
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": "rn-statusbar-height",
"version": "2.1.1",
"description": "A library that gets statusbar height for React Native",
"main": "index.ts",
"typings": "index.d.ts",
"scripts": {
"test": "npx jest --coverage",
"tsc": "tsc",
"pub": "sh publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yorickshan/rn-statusbar-height.git"
},
"keywords": [
"react-native"
],
"author": "yorickshan",
"license": "MIT",
"bugs": {
"url": "https://github.com/yorickshan/rn-statusbar-height/issues"
},
"homepage": "https://github.com/yorickshan/rn-statusbar-height#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/react-native": "^0.73.0",
"jest": "^26.6.3",
"react-native": "^0.62.2",
"typescript": "^5.4.2"
},
"jest": {
"preset": "react-native",
"collectCoverage": true,
"coverageReporters": [
"html",
"json-summary"
]
},
"dependencies": {
"react": "^16.9.0"
}
}