-
Notifications
You must be signed in to change notification settings - Fork 648
/
package.json
53 lines (53 loc) · 1.46 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-native-keyboard-aware-scroll-view",
"version": "0.9.5",
"description": "A React Native ScrollView component that resizes when the keyboard appears.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint lib",
"test": "npm run lint",
"flow": "flow check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/APSL/react-native-keyboard-aware-scroll-view.git"
},
"tags": [
"react",
"react-native",
"react-component",
"ios",
"android"
],
"keywords": [
"react",
"react-native",
"scrollview",
"keyboard",
"ios",
"android",
"react-component"
],
"author": "Alvaro Medina Ballester <me@alvaromb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues"
},
"homepage": "https://github.com/APSL/react-native-keyboard-aware-scroll-view#readme",
"dependencies": {
"prop-types": "^15.6.2",
"react-native-iphone-x-helper": "^1.0.3"
},
"peerDependencies": {
"react-native": ">=0.48.4"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-native": "^3.7.0",
"flow-bin": "^0.105.2"
}
}