Skip to content

Commit 7cd6272

Browse files
author
Dan Tamas
committedJul 15, 2020
Merge branch 'release/0.9.2'
2 parents fc03ced + aa7f116 commit 7cd6272

File tree

1 file changed

+51
-51
lines changed

1 file changed

+51
-51
lines changed
 

‎package.json

+51-51
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
{
2-
"name": "react-native-keyboard-aware-scroll-view",
3-
"version": "0.9.1",
4-
"description": "A React Native ScrollView component that resizes when the keyboard appears.",
5-
"main": "index.js",
6-
"types": "index.d.ts",
7-
"scripts": {
8-
"lint": "eslint lib",
9-
"test": "npm run lint",
10-
"flow": "flow check"
11-
},
12-
"repository": {
13-
"type": "git",
14-
"url": "git+https://github.com/APSL/react-native-keyboard-aware-scroll-view.git"
15-
},
16-
"tags": [
17-
"react",
18-
"react-native",
19-
"react-component",
20-
"ios",
21-
"android"
22-
],
23-
"keywords": [
24-
"react",
25-
"react-native",
26-
"scrollview",
27-
"keyboard",
28-
"ios",
29-
"android",
30-
"react-component"
31-
],
32-
"author": "Alvaro Medina Ballester <me@alvaromb.com>",
33-
"license": "MIT",
34-
"bugs": {
35-
"url": "https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues"
36-
},
37-
"homepage": "https://github.com/APSL/react-native-keyboard-aware-scroll-view#readme",
38-
"dependencies": {
39-
"prop-types": "^15.6.2",
40-
"react-native-iphone-x-helper": "^1.0.3"
41-
},
42-
"peerDependencies": {
43-
"react-native": ">=0.48.4"
44-
},
45-
"devDependencies": {
46-
"babel-eslint": "^10.0.2",
47-
"eslint": "^6.1.0",
48-
"eslint-plugin-flowtype": "^4.2.0",
49-
"eslint-plugin-react": "^7.14.3",
50-
"eslint-plugin-react-native": "^3.7.0",
51-
"flow-bin": "^0.105.2"
52-
}
2+
"name": "react-native-keyboard-aware-scroll-view",
3+
"version": "0.9.2",
4+
"description": "A React Native ScrollView component that resizes when the keyboard appears.",
5+
"main": "index.js",
6+
"types": "index.d.ts",
7+
"scripts": {
8+
"lint": "eslint lib",
9+
"test": "npm run lint",
10+
"flow": "flow check"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/APSL/react-native-keyboard-aware-scroll-view.git"
15+
},
16+
"tags": [
17+
"react",
18+
"react-native",
19+
"react-component",
20+
"ios",
21+
"android"
22+
],
23+
"keywords": [
24+
"react",
25+
"react-native",
26+
"scrollview",
27+
"keyboard",
28+
"ios",
29+
"android",
30+
"react-component"
31+
],
32+
"author": "Alvaro Medina Ballester <me@alvaromb.com>",
33+
"license": "MIT",
34+
"bugs": {
35+
"url": "https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues"
36+
},
37+
"homepage": "https://github.com/APSL/react-native-keyboard-aware-scroll-view#readme",
38+
"dependencies": {
39+
"prop-types": "^15.6.2",
40+
"react-native-iphone-x-helper": "^1.0.3"
41+
},
42+
"peerDependencies": {
43+
"react-native": ">=0.48.4"
44+
},
45+
"devDependencies": {
46+
"babel-eslint": "^10.0.2",
47+
"eslint": "^6.1.0",
48+
"eslint-plugin-flowtype": "^4.2.0",
49+
"eslint-plugin-react": "^7.14.3",
50+
"eslint-plugin-react-native": "^3.7.0",
51+
"flow-bin": "^0.105.2"
52+
}
5353
}

1 commit comments

Comments
 (1)

greenbull-tpathier commented on Jul 21, 2020

@greenbull-tpathier

Hello, it seems this release was not published to NPM, perhaps you forgot to do it?
https://www.npmjs.com/package/react-native-keyboard-aware-scroll-view

Edit: see end of #443 for details

Please sign in to comment.