forked from benevbright/react-navigation-collapsible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "react-navigation-collapsible",
"version": "5.5.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"
},
"peerDependencies": {
"@react-navigation/native": "*",
"@react-navigation/stack": "*",
"react": ">=16.8",
"react-native": ">=0.59"
},
"dependencies": {
"react-native-iphone-x-helper": "^1.2.1"
},
"devDependencies": {
"@types/react": "^16.9.17",
"@types/react-native": "^0.60.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.10.0",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
}
}