Skip to content

Commit 11c110c

Browse files
author
alvaromb
committed
Published npm package
1 parent 02cf6aa commit 11c110c

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.log
2+
node_modules
3+
AwesomeProject.xcodeproj
4+
AwesomeProjectTests
5+
index.ios.js
6+
iOS

package.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "react-native-keyboard-aware-scroll-view",
3+
"version": "0.0.1",
4+
"description": "A React Native ScrollView component that resizes when the keyboard appears.",
5+
"main": "KeyboardAwareScrollView.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/APSL/react-native-keyboard-aware-scroll-view.git"
12+
},
13+
"tags": [
14+
"react",
15+
"react-native",
16+
"react-component",
17+
"ios",
18+
"android"
19+
],
20+
"keywords": [
21+
"react",
22+
"react-native",
23+
"scrollview",
24+
"keyboard"
25+
"ios",
26+
"android",
27+
"react-component"
28+
],
29+
"author": "Alvaro Medina Ballester <[email protected]>",
30+
"license": "MIT",
31+
"bugs": {
32+
"url": "https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues"
33+
},
34+
"homepage": "https://github.com/APSL/react-native-keyboard-aware-scroll-view#readme",
35+
"dependencies": {
36+
"react-native": ">=0.12.0",
37+
"react-timer-mixin": "^0.13.3"
38+
},
39+
"peerDependencies": {
40+
"react-native": ">=0.12.0"
41+
}
42+
}

0 commit comments

Comments
 (0)