This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
66 lines (66 loc) · 1.72 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
58
59
60
61
62
63
64
65
66
{
"name": "react-native-safe-area-view",
"description": "Add padding to your views to account for notches, home indicators, status bar, and possibly other future things.",
"version": "2.0.0",
"author": "Dave Pack ([email protected]), Brent Vatne ([email protected])",
"license": "MIT",
"keywords": [
"react-native",
"iPhoneX",
"SafeAreaView",
"safe area",
"notch"
],
"repository": {
"url": "[email protected]:react-community/react-native-safe-area-view.git",
"type": "git"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"files": [
"lib/",
"src/"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"scripts": {
"test": "yarn validate:prettier && yarn typescript",
"typescript": "tsc --noEmit",
"validate:prettier": "npx prettier \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" --check",
"prepare": "bob build",
"example": "yarn --cwd example",
"bootstrap": "yarn example && yarn"
},
"dependencies": {
"hoist-non-react-statics": "^2.3.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-safe-area-context": ">=1.0.0"
},
"devDependencies": {
"@babel/core": "^7",
"@react-native-community/bob": "^0.6.1",
"@types/react": "~16.8",
"@types/react-native": "^0.62.1",
"prettier": "^1.18.2",
"react": "16.8.3",
"react-native": "~0.61.4",
"react-native-safe-area-context": "^1.0.0",
"typescript": "^3.8.3"
}
}