forked from APSL/react-native-keyboard-aware-scroll-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "react-native-keyboard-aware-scroll-view",
"version": "0.3.0",
"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 <[email protected]>",
"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": {
"create-react-class": "^15.6.0",
"prop-types": "^15.5.10",
"react-timer-mixin": "^0.13.3"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^3.17.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "0.47.0"
}
}