forked from th3rdwave/react-native-safe-area-context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-native-safe-area-context",
"version": "4.2.3",
"description": "A flexible way to handle safe area, also works on Android and web.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"source": "src/index.tsx",
"sideEffects": false,
"files": [
"src",
"lib",
"android",
"ios",
"common",
"jest",
"*.podspec",
"react-native.config.js",
"!**/__tests__",
"!example"
],
"author": "Janic Duplessis <[email protected]>",
"contributors": [
"Evan Bacon <[email protected]> (https://github.com/evanbacon)"
],
"homepage": "https://github.com/th3rdwave/react-native-safe-area-context#readme",
"license": "MIT",
"scripts": {
"start": "react-native start",
"test": "yarn validate:prettier && yarn validate:eslint && yarn validate:typescript && yarn validate:jest",
"validate:eslint": "eslint \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" \"fabric-example/**/*.{js,ts,tsx}\"",
"validate:typescript": "tsc --project ./ --noEmit",
"validate:prettier": "prettier \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" \"fabric-example/**/*.{js,ts,tsx}\" --check",
"validate:jest": "jest",
"prepublish": "yarn test",
"prepare": "bob build"
},
"keywords": [
"react-native",
"react native",
"react-native-web",
"expo-web",
"safe area",
"view"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"@react-native/eslint-plugin-specs": "^0.0.3",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-native": "^0.66.16",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"metro-react-native-babel-preset": "^0.68.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "0.0.0-20220213-2008-7cece3423",
"react-native-builder-bob": "^0.18.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/th3rdwave/react-native-safe-area-context.git"
},
"jest": {
"preset": "react-native",
"testEnvironment": "node",
"clearMocks": true,
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"codegenConfig": {
"libraries": [
{
"name": "SafeAreaContextSpec",
"type": "modules",
"jsSrcsDir": "./src"
},
{
"name": "safeareacontext",
"type": "components",
"jsSrcsDir": "./src"
}
]
}
}