This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
57 lines (57 loc) · 1.59 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-navigation-collapsible",
"version": "6.3.0",
"description": "An extension of react-navigation for the collapsible header",
"repository": {
"type": "git",
"url": "git+https://github.com/benevbright/react-navigation-collapsible.git"
},
"author": "Bright Lee <[email protected]>",
"license": "MIT",
"keywords": [
"react-native",
"react-navigation",
"navigation",
"collapsible",
"collapsible header",
"hide header",
"animate header",
"hide navigation"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prettier": "prettier --write index.ts ./src/**/* README.md",
"flowgen": "sh flow.sh",
"lint": "eslint --ext '.js,.ts,.tsx' index.ts ./src",
"build": "tsc && yarn flowgen",
"clean": "rm -rf lib",
"build-publish": "yarn clean && yarn lint && yarn build && yarn publish && git push origin main --tags"
},
"peerDependencies": {
"@react-navigation/native": ">=6",
"@react-navigation/stack": ">=6",
"react": ">=16.8",
"react-native": ">=0.59"
},
"dependencies": {
"react-native-iphone-x-helper": "^1.3.1",
"shallowequal": "^1.1.0"
},
"devDependencies": {
"@types/react": "^16.9.50",
"@types/react-native": "0.63.25",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"flowgen": "^1.14.1",
"prettier": "^1.19.1",
"typescript": "^4.3.2"
}
}