-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "react-navigation-keyboard-avoidingview",
"version": "1.0.0",
"description": "Easy auto scrollable KeyboardAvoidingView for React Navigation working on Android",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schardtbc/ts-package-template.git"
},
"keywords": [
"react native",
"react navigation",
"keyboard avoidingview",
"android"
],
"author": "Pedro Bullo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "26.0.9",
"@types/react": "^16.9.46",
"@types/react-native": "^0.63.6",
"jest": "26.3.0",
"prettier": "2.0.5",
"tslint-config-prettier": "1.18.0",
"typescript": "3.9.7"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "5.9.0",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-gesture-handler": "^1.7.0",
"react-native-reanimated": "^1.11.0",
"react-native-safe-area-context": "^3.1.4",
"react-native-screens": "^2.10.1"
},
"files": [
"lib/**/*"
]
}